Skip to content

Commit

Permalink
Finish v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pinhead84 committed Aug 16, 2021
2 parents f961dae + c6103e3 commit c0106c2
Show file tree
Hide file tree
Showing 1,074 changed files with 92,955 additions and 35,092 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
36 changes: 12 additions & 24 deletions .idea/compiler.xml

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

18 changes: 17 additions & 1 deletion .idea/dictionaries/global.xml

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

24 changes: 24 additions & 0 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.

2 changes: 2 additions & 0 deletions Build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/apidocs
/target
32 changes: 32 additions & 0 deletions Build/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
OpenEstate-IO-Build 1.5
=======================

*OpenEstate-IO-Build* is a Java library, that provides some helper classes used to build the *OpenEstate-IO* libraries. This library is not required at runtime.


Dependencies
------------

- Java 8 or newer
- [jsonschema2pojo 1.1.1](https://github.com/joelittlejohn/jsonschema2pojo)


Changelog
---------

Take a look at [`CHANGELOG.md`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md) for the full changelog.


License
-------

This library is licensed under the terms of [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html). Take a look at [`LICENSE.txt`](https://github.com/OpenEstate/OpenEstate-IO/blob/develop/LICENSE.txt) for the license text.


Further information
-------------------

- [*OpenEstate-IO* at GitHub](https://github.com/OpenEstate/OpenEstate-IO)
- [Releases of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/releases)
- [Changelog of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md)
- [API documentation of *OpenEstate-IO*](https://media.openestate.org/apidocs/OpenEstate-IO/)
109 changes: 109 additions & 0 deletions Build/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.openestate.io</groupId>
<artifactId>OpenEstate-IO</artifactId>
<version>1.5</version>
</parent>

<artifactId>OpenEstate-IO-Build</artifactId>
<version>1.5</version>
<packaging>jar</packaging>

<name>OpenEstate-IO-Build</name>
<description>
OpenEstate-IO-Build is a Java library, that provides some helper classes for the build process of OpenEstate-IO.
</description>
<url>https://openestate.org</url>
<organization>
<name>OpenEstate</name>
<url>https://openestate.org/</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<developers>
<developer>
<id>andy</id>
<name>Andreas Rudolph</name>
<email>[email protected]</email>
<organization>OpenIndex</organization>
<organizationUrl>https://openindex.de/</organizationUrl>
</developer>
</developers>

<dependencies>

<!-- compile -->
<dependency>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-core</artifactId>
<scope>compile</scope>
</dependency>

<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
<plugins>

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

<!-- javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

<!-- jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.openestate.io.build</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>

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

0 comments on commit c0106c2

Please sign in to comment.