Skip to content

Commit

Permalink
FC-230 - Support Java 11+
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnmckinney committed Jul 15, 2019
1 parent 3bd5fa7 commit 132b290
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions pom.xml
Expand Up @@ -103,7 +103,7 @@
<!-- ====================================================== -->
<properties>
<title>${project.name} ${project.version}</title>

<java.version>1.8</java.version>
<!-- Dependencies version -->
<fortress.realm.version>2.0.4-SNAPSHOT</fortress.realm.version>
<cxf.version>3.2.6</cxf.version>
Expand Down Expand Up @@ -197,7 +197,19 @@
<version>${junit.version}</version>
<scope>test</scope>
</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>

<build>
Expand Down Expand Up @@ -347,19 +359,23 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${java.version}</source>
<target>${java.version}</target>
<optimize>true</optimize>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
Expand Down

0 comments on commit 132b290

Please sign in to comment.