-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
target/ | ||
/target | ||
|
||
|
||
# | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/apidocs | ||
/target |
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/) |
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> |