-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into 'master'
Release 4.4.2 See merge request rml/proc/rmlmapper-java!60
- Loading branch information
Showing
268 changed files
with
18,541 additions
and
18,308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docs/apidocs/* binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
|
||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 28 | ||
# Label requiring a response | ||
responseRequiredLabel: more-information-needed | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM openjdk:8-alpine | ||
|
||
RUN apk add --no-cache git maven | ||
ADD . /rmlmapper-java | ||
|
||
WORKDIR rmlmapper-java | ||
RUN mvn clean install -DskipTests=true | ||
RUN mv `find target/ -iname rmlmapper*.jar;` /rmlmapper.jar | ||
WORKDIR /data | ||
|
||
ENTRYPOINT ["java", "-jar", "/rmlmapper.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#maven.buildNumber.plugin properties file | ||
#Mon Jun 17 17:22:16 CEST 2019 | ||
buildNumber0=97 | ||
#Mon Jul 15 13:18:09 CEST 2019 | ||
buildNumber0=129 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>be.ugent.rml</groupId> | ||
<artifactId>rmlmapper</artifactId> | ||
<version>4.4.1</version> | ||
<version>4.4.2</version> | ||
<scm> | ||
<connection>scm:git:ssh://[email protected]:RMLio/rmlmapper-java.git</connection> | ||
<url>https://github.com/RMLio/rmlmapper-java</url> | ||
|
@@ -176,9 +176,9 @@ | |
</dependency> | ||
</dependencies> | ||
<properties> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
<junit.version>4.12</junit.version> | ||
</properties> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.