Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion esealing-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<version>0.0.1-SNAPSHOT</version>

<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.javadoc.skip>true</maven.javadoc.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -83,5 +84,26 @@
<version>4.10</version>
</dependency>
</dependencies>

<profiles>
<profile>
<id>jdk11</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

34 changes: 27 additions & 7 deletions esealing-ws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,33 @@
<version>7.1</version>
</dependency>

<!-- IAIK sunpkcs11-wrapper, to access an HSM -->
<dependency>
<groupId>org.xipki.iaik</groupId>
<artifactId>sunpkcs11-wrapper</artifactId>
<version>1.4.7</version>
</dependency>
<!-- IAIK sunpkcs11-wrapper, to access an HSM -->
<dependency>
<groupId>org.xipki.iaik</groupId>
<artifactId>sunpkcs11-wrapper</artifactId>
<version>1.4.7</version>
</dependency>
</dependencies>

</dependencies>
<profiles>
<profile>
<id>jdk11</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>
</profile>
</profiles>

</project>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
</modules>

<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<springfox.version>2.9.2</springfox.version>
<httpclient.version>4.5.11</httpclient.version>
</properties>
Expand All @@ -48,5 +49,4 @@
</dependency>
</dependencies>
</dependencyManagement>

</project>