Skip to content

Commit

Permalink
6: Implement JSR 385
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Apr 22, 2018
1 parent 54bbf8e commit 590bdf8
Show file tree
Hide file tree
Showing 29 changed files with 60 additions and 29 deletions.
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
#
# Units of Measurement Enum Implementation
# Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
# and the following disclaimer in the documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of JSR-363, Unit-API nor the names of their contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

# Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,13 @@
<configuration>
<header>src/main/config/header.txt</header>
<properties>
<owner>Jean-Marie Dautelle, Werner Keil, V2COM</owner>
<currentYear>2016</currentYear>
<owner>Jean-Marie Dautelle, Werner Keil, Otavio Santana</owner>
<currentYear>2018</currentYear>
</properties>
<excludes>
<exclude>**/pom.xml</exclude>
<exclude>**/README</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/settings.xml</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/AbstractQuantity.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/DimensionalModel.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/StandardModel.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/format/UnitStyle.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/format/package-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/quantity/ShirtSize.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/quantity/TimeAmount.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/unit/Constants.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/unit/DistanceUnit.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/unit/ShirtSizeUnit.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/uom/impl/enums/unit/TimeUnit.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/tec/uom/impl/enums/quantity/TimeTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/tec/uom/impl/enums/unit/TimeUnitTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/tec/uom/impl/enums/unit/package-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Units of Measurement Enum Implementation
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
Expand Down

0 comments on commit 590bdf8

Please sign in to comment.