Skip to content

Commit

Permalink
1.0.4 release (#18)
Browse files Browse the repository at this point in the history
- jdk11 support
- dependency updates
  • Loading branch information
julian-eggers committed Nov 11, 2018
1 parent c6da77c commit 03e6db7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: java

jdk:
- oraclejdk8
- oraclejdk11

cache:
directories:
Expand All @@ -10,8 +11,8 @@ cache:
install: mvn package -Dgpg.skip=true

before_install:
- wget -O ~/codacy-coverage-reporter-assembly.jar https://github.com/codacy/codacy-coverage-reporter/releases/download/4.0.3/codacy-coverage-reporter-4.0.3-assembly.jar
- wget -O ~/codacy-coverage-reporter-assembly.jar https://github.com/codacy/codacy-coverage-reporter/releases/download/4.0.5/codacy-coverage-reporter-4.0.5-assembly.jar

after_success:
- mvn coveralls:report
- java -cp ~/codacy-coverage-reporter-assembly.jar com.codacy.CodacyCoverageReporter -l Java -r target/site/jacoco/jacoco.xml
- java -jar ~/codacy-coverage-reporter-assembly.jar report -l Java -r target/site/jacoco/jacoco.xml
18 changes: 16 additions & 2 deletions 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.0.3-RELEASE</version>
<version>1.0.4-RELEASE</version>
</dependency>
```

Expand Down Expand Up @@ -123,4 +123,18 @@ public class XPathExpressionValueCustomerParser implements Parser<Customer>
```java
Parser<?> parser = new IntegerParser();
Assert.assertTrue(XomUnmarshallerTestUtil.resolves(parser, "<integer><data value=\"11\" /></integer>"));
```
```



## Build & Release

### Build
```
mvn clean package
```

### Release
```
mvn clean deploy
```
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>spring-xom-unmarshaller</name>
<description>Spring XML Unmarshalling with XOM</description>
<url>https://github.com/julian-eggers/spring-xom-unmarshaller</url>
<version>1.0.3-RELEASE</version>
<version>1.0.4-RELEASE</version>

<properties>
<!-- System -->
Expand All @@ -15,8 +15,8 @@
<java.version>1.8</java.version>
<!-- Testing -->
<jacoco.version>0.8.2</jacoco.version>
<powermock.version>1.7.3</powermock.version>
<easymock.version>3.6</easymock.version>
<powermock.version>2.0.0-RC.3</powermock.version>
<easymock.version>4.0.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>
Expand All @@ -27,7 +27,7 @@
<coveralls.version>4.3.0</coveralls.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>
<github-release-plugin.version>1.2.0</github-release-plugin.version>
<github-release-plugin.version>1.3.0</github-release-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
</properties>

Expand All @@ -49,7 +49,7 @@
<dependency>
<groupId>com.itelg</groupId>
<artifactId>xpath-helper</artifactId>
<version>0.5.2-RELEASE</version>
<version>0.5.3-RELEASE</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down

0 comments on commit 03e6db7

Please sign in to comment.