Skip to content

Commit

Permalink
Merge pull request #15 from Kount/JDKcompatibilityIssue
Browse files Browse the repository at this point in the history
Jdk compatibility issue
  • Loading branch information
bingyansa authored Feb 13, 2020
2 parents 6ee40ba + dad47a4 commit 827a2a2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
11 changes: 10 additions & 1 deletion kount-ris-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
<artifactId>log4j-api</artifactId>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -46,18 +51,22 @@
</profiles>

<build>

<finalName>${project.artifactId}-${project.version}</finalName>

<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.1.0</version>
<configuration>
<sourcepath>${project.basedir}/src/main</sourcepath>
<aggregate>false</aggregate>
<additionalparam>${javadoc.opts}</additionalparam>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
</configuration>
<executions>
<execution>
Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@

<log4j-core.version>2.13.0</log4j-core.version>
<log4j-api.version>2.13.0</log4j-api.version>
<jaxb-api.version>2.3.1</jaxb-api.version>

<junit.version>4.10</junit.version>
<junit.version>4.12</junit.version>
</properties>

<dependencyManagement>
<dependencies>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
Expand All @@ -46,7 +48,13 @@
<artifactId>log4j-api</artifactId>
<version>${log4j-api.version}</version>
</dependency>


<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit 827a2a2

Please sign in to comment.