Skip to content

Commit

Permalink
Updated Unit Test so that the build can be run on Java8.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmak committed Jun 11, 2018
1 parent f470328 commit 0f20bf6
Show file tree
Hide file tree
Showing 38 changed files with 2,238 additions and 406 deletions.
291 changes: 0 additions & 291 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
language: java

jdk:
- oraclejdk7
- oraclejdk8

script:
- mvn -B -Ptravis clean install
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Coverage Status](https://coveralls.io/repos/github/dmak/jaxb-xew-plugin/badge.svg?branch=master)](https://coveralls.io/github/dmak/jaxb-xew-plugin?branch=master)
[![Dependency Status](https://www.versioneye.com/java/com.github.jaxb-xew-plugin:jaxb-xew-plugin/badge?style=flat)](https://www.versioneye.com/java/com.github.jaxb-xew-plugin:jaxb-xew-plugin/)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.jaxb-xew-plugin/jaxb-xew-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.jaxb-xew-plugin/jaxb-xew-plugin)
[![Javadoc](https://javadoc-emblem.rhcloud.com/doc/com.github.jaxb-xew-plugin/jaxb-xew-plugin/badge.svg)](http://www.javadoc.io/doc/com.github.jaxb-xew-plugin/jaxb-xew-plugin)
[![Javadoc](http://javadoc.io/badge/com.github.jaxb-xew-plugin/jaxb-xew-plugin.svg)](http://www.javadoc.io/doc/com.github.jaxb-xew-plugin/jaxb-xew-plugin)

## Description

Expand Down Expand Up @@ -469,6 +469,11 @@ These plugins don't work with `xew` as last one is causing side effects (see [#4

## What's new

### [v1.10](http://search.maven.org/#artifactdetails|com.github.jaxb-xew-plugin|jaxb-xew-plugin|1.10|jar) (future release)

* Bugs fixed ([#57](https://github.com/dmak/jaxb-xew-plugin/issues/57)).
* Updated dependencies and plugins versions. Made JavaDocs Java8-compliant.

### [v1.9](http://search.maven.org/#artifactdetails|com.github.jaxb-xew-plugin|jaxb-xew-plugin|1.9|jar)

* Bugs fixed ([#52](https://github.com/dmak/jaxb-xew-plugin/issues/52)).
Expand Down Expand Up @@ -569,7 +574,7 @@ This very open source project is maintained and improved during my free time. Th
#### Build and release procedure

* Read [Sonatype OSS Maven Repository Usage Guide](http://central.sonatype.org/pages/ossrh-guide.html) from cover to cover.
* Use the following `settings.xml` for your Maven (see [Sharing Files with Build Agents](http://wiki.cloudbees.com/bin/view/DEV/Sharing+Files+with+Build+Executors) about how to share `settings.xml` with build nodes on CloudBees):
* Use the following `settings.xml` for your Maven (see [Sharing Files with Build Agents](http://wiki.cloudbees.com/bin/view/DEV/Sharing+Files+with+Build+Executors) about how to share `settings.xml` with build nodes on CloudBees and [Configuring GPG/PGP for Maven Releases](https://nblair.github.io/2015/10/29/maven-gpg-sonatype/) about GPG profile):
```xml
<settings>
<!-- Optional proxy configuration (if applicable to your environment) -->
Expand Down Expand Up @@ -612,6 +617,7 @@ This very open source project is maintained and improved during my free time. Th
<profile>
<id>secure</id>
<properties>
<gpg.useagent>false</gpg.useagent>
<gpg.passphrase>...passphrase...</gpg.passphrase>
<gpg.homedir>/private/...github_user.../gpg</gpg.homedir>
</properties>
Expand Down
Loading

0 comments on commit 0f20bf6

Please sign in to comment.