Skip to content

Commit

Permalink
fixed pom.xml
Browse files Browse the repository at this point in the history
Issue #812
  • Loading branch information
rsoika committed Mar 20, 2023
1 parent cc47b3d commit d1bf474
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.source>11</java.source>
<java.target>11</java.target>
<!-- dependency versions -->
<jakarta.version>8.0</jakarta.version>
<microprofile.version>3.3</microprofile.version>
Expand Down Expand Up @@ -94,17 +96,15 @@

<build>
<plugins>

<!-- use JDK settings for compiling -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${java.source}</source>
<target>${java.target}</target>
</configuration>
</plugin>
</plugin>

<!-- release management -->
<plugin>
Expand Down Expand Up @@ -257,15 +257,28 @@
<type>pom</type>
<scope>provided</scope>
</dependency>

<!--
<!-- JDK 11 - XML Bind -->
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>${microprofile-metrics.version}</version>
<scope>provided</scope>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.1</version>
</dependency>
-->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.25.0-GA</version>
</dependency>

<!-- JUnit Tests -->
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit d1bf474

Please sign in to comment.