Skip to content

Commit

Permalink
Finish v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pinhead84 committed Aug 15, 2021
2 parents 1fd9995 + 6dd3b61 commit b0a5c78
Show file tree
Hide file tree
Showing 445 changed files with 21,746 additions and 8,659 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
target/
/target


#
Expand Down
5 changes: 2 additions & 3 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/dictionaries/global.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Changelog for OpenEstate-IS24-REST
==================================

0.6 (15 Aug 2021)
-----------------

- Compile for Java 8.
- Provide JAXB as dependency for easier use in Java 9 and beyond.
- Regenerated JAXB classes against the latest XSD schemas from IS24 with JAXB 2.3.
- Updated Apache HttpClient to version 4.5. Artifacts `OpenEstate-IS24-REST-HC42`, `OpenEstate-IS24-REST-HC43` were removed and replaced with `OpenEstate-IS24-REST-HC4`.
- Updated `commons-codec` library to version 1.15.
- Updated `commons-io` library to version 2.11.0.
- Updated `commons-lang` library to version 3.12.0.
- Updated `commons-text` library to version 1.9.
- Updated `jaxb2-basics-runtime` library to version 0.12.0.
- Updated `oauth.signpost` library to version 2.1.1.
- Updated `slf4j` library to version 1.7.30.


0.5 (08 Dec 2018)
-----------------

Expand Down
4 changes: 2 additions & 2 deletions Core/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
release/
target/
/apidocs
/target
2 changes: 1 addition & 1 deletion Core/mvn-clean.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Copyright 2014-2018 OpenEstate.org
# Copyright 2014-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
24 changes: 0 additions & 24 deletions Core/mvn-findbugs-gui.sh

This file was deleted.

2 changes: 1 addition & 1 deletion Core/mvn-install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Copyright 2014-2018 OpenEstate.org
# Copyright 2014-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions Core/mvn-jaxb-xjc.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Copyright 2014-2018 OpenEstate.org
# Copyright 2014-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -21,4 +21,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
set -e
export LANG=en
cd "$DIR"
"$MVN" org.jvnet.jaxb2.maven2:maven-jaxb22-plugin:generate
"$MVN" org.jvnet.jaxb2.maven2:maven-jaxb23-plugin:generate
50 changes: 32 additions & 18 deletions Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>org.openestate.is24</groupId>
<artifactId>OpenEstate-IS24-REST</artifactId>
<version>0.5</version>
<version>0.6</version>
</parent>

<artifactId>OpenEstate-IS24-REST-Core</artifactId>
<version>0.5</version>
<version>0.6</version>
<packaging>jar</packaging>

<name>OpenEstate-IS24-REST-Core</name>
Expand All @@ -25,7 +25,7 @@
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
Expand All @@ -44,12 +44,6 @@
<dependencies>

<!-- further compile dependencies -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand All @@ -69,6 +63,21 @@
<artifactId>commons-text</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-runtime</artifactId>
Expand Down Expand Up @@ -98,13 +107,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>

Expand All @@ -113,6 +117,15 @@
<build>
<plugins>

<!-- compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>8</release>
</configuration>
</plugin>

<!-- add generated JAXB sources -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -148,7 +161,7 @@
<!-- JAXB -->
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb22-plugin</artifactId>
<artifactId>maven-jaxb23-plugin</artifactId>
<configuration>
<generateDirectory>${project.basedir}/src/main/jaxb</generateDirectory>
<schemaDirectory>${project.basedir}/src/main/schema</schemaDirectory>
Expand All @@ -170,7 +183,7 @@
<debug>false</debug>
<verbose>false</verbose>

<specVersion>2.2</specVersion>
<specVersion>2.3</specVersion>
<extension>true</extension>
<strict>true</strict>
<args>
Expand All @@ -181,6 +194,7 @@
</args>
</configuration>
</plugin>

</plugins>
</build>
</project>
Loading

0 comments on commit b0a5c78

Please sign in to comment.