Skip to content

Commit 590bdf8

Browse files
committed
1 parent 54bbf8e commit 590bdf8

29 files changed

Lines changed: 60 additions & 29 deletions

.circleci/config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
#
2+
# Units of Measurement Enum Implementation
3+
# Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
4+
#
5+
# All rights reserved.
6+
#
7+
# Redistribution and use in source and binary forms, with or without modification,
8+
# are permitted provided that the following conditions are met:
9+
#
10+
# 1. Redistributions of source code must retain the above copyright notice,
11+
# this list of conditions and the following disclaimer.
12+
#
13+
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
14+
# and the following disclaimer in the documentation and/or other materials provided with the distribution.
15+
#
16+
# 3. Neither the name of JSR-363, Unit-API nor the names of their contributors may be used to endorse or promote products
17+
# derived from this software without specific prior written permission.
18+
#
19+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24+
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25+
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26+
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28+
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29+
#
30+
131
# Java Maven CircleCI 2.0 configuration file
232
#
333
# Check https://circleci.com/docs/2.0/language-java/ for more details

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,13 @@
179179
<configuration>
180180
<header>src/main/config/header.txt</header>
181181
<properties>
182-
<owner>Jean-Marie Dautelle, Werner Keil, V2COM</owner>
183-
<currentYear>2016</currentYear>
182+
<owner>Jean-Marie Dautelle, Werner Keil, Otavio Santana</owner>
183+
<currentYear>2018</currentYear>
184184
</properties>
185185
<excludes>
186186
<exclude>**/pom.xml</exclude>
187187
<exclude>**/README</exclude>
188+
<exclude>**/LICENSE</exclude>
188189
<exclude>**/settings.xml</exclude>
189190
<exclude>src/test/resources/**</exclude>
190191
<exclude>src/main/resources/**</exclude>

src/main/java/tech/uom/impl/enums/AbstractQuantity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/DimensionalModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/StandardModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/format/AbstractUnitFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/format/SimpleUnitFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/format/UnitStyle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/format/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

src/main/java/tech/uom/impl/enums/function/AbstractConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Units of Measurement Enum Implementation
3-
* Copyright © 2005-2016, Jean-Marie Dautelle, Werner Keil, V2COM.
3+
* Copyright © 2005-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
44
*
55
* All rights reserved.
66
*

0 commit comments

Comments
 (0)