Skip to content

Commit

Permalink
Making minimal changes to the pom files, to make the projects build u…
Browse files Browse the repository at this point in the history
…nder JDK 11.

Also, renamed the project version. (ref. IQSS/dataverse#8372)
  • Loading branch information
landreev committed Feb 8, 2022
1 parent 8d24fcd commit 9ba87b8
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<groupId>com.lyncode</groupId>
<artifactId>xoai</artifactId>
<version>4.1.0-header-patch</version>
<version>4.1.0-dataverse-fork</version>

<name>XOAI : OAI-PMH Java Toolkit</name>
<url>http://www.lyncode.com</url>
Expand Down Expand Up @@ -257,6 +257,23 @@
<artifactId>builder-commons</artifactId>
<version>${lyncode.builder-commons}</version>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down
15 changes: 14 additions & 1 deletion xoai-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>xoai</artifactId>
<groupId>com.lyncode</groupId>
<version>4.1.0-header-patch</version>
<version>4.1.0-dataverse-fork</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -64,6 +64,19 @@
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion xoai-data-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>xoai</artifactId>
<groupId>com.lyncode</groupId>
<version>4.1.0-header-patch</version>
<version>4.1.0-dataverse-fork</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion xoai-service-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>xoai</artifactId>
<groupId>com.lyncode</groupId>
<version>4.1.0-header-patch</version>
<version>4.1.0-dataverse-fork</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 9ba87b8

Please sign in to comment.