Skip to content

Commit

Permalink
SpringBoot 2.2 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-eggers committed Nov 12, 2019
1 parent 6a39670 commit 862a5f4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ services:
language: java

jdk:
- oraclejdk8
- oraclejdk11

cache:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Spring XML Unmarshalling with [XOM](http://www.xom.nu/)
<dependency>
<groupId>com.itelg.spring</groupId>
<artifactId>spring-xom-unmarshaller</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.3.0</version>
</dependency>
```

Expand Down
37 changes: 22 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.itelg.spring</groupId>
<artifactId>spring-xom-unmarshaller</artifactId>
<name>spring-xom-unmarshaller</name>
<description>Spring XML Unmarshalling with XOM</description>
<url>https://github.com/julian-eggers/spring-xom-unmarshaller</url>
<version>1.2.0-RELEASE</version>
<version>1.3.0</version>

<properties>
<!-- System -->
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>dd.MM.yyyy HH:mm</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<java.version>11</java.version>
<!-- Testing -->
<jacoco.version>0.8.2</jacoco.version>
<powermock.version>2.0.0</powermock.version>
<easymock.version>4.0.2</easymock.version>
<jacoco.version>0.8.5</jacoco.version>
<powermock.version>2.0.4</powermock.version>
<easymock.version>4.1</easymock.version>
<!-- Build -->
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
<maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version>
<maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-scm-provider-gitexe.version>1.11.1</maven-scm-provider-gitexe.version>
<maven-scm-provider-gitexe.version>1.11.2</maven-scm-provider-gitexe.version>
<exists-maven-plugin.version>0.0.6</exists-maven-plugin.version>
<github-release-plugin.version>1.2.0</github-release-plugin.version>
<github-release-plugin.version>1.4.0</github-release-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
</properties>

Expand All @@ -37,13 +39,13 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.1.2.RELEASE</version>
<version>2.2.1.RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<version>5.1.4.RELEASE</version>
<version>5.2.1.RELEASE</version>
</dependency>

<!-- Other -->
Expand All @@ -60,15 +62,20 @@
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-amqp</artifactId>
<version>2.1.2.RELEASE</version>
<version>2.2.1.RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.4.01</version>
</dependency>

<!-- Testing -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<version>3.14.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 862a5f4

Please sign in to comment.