Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switched to OpenJDK due to license change #706

Merged
merged 2 commits into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@ env:
language: java
matrix:
include:
- jdk: oraclejdk8
- jdk: openjdk8
env: SHOULD_DEPLOY=true
- jdk: oraclejdk9
- jdk: oraclejdk8
env: SHOULD_DEPLOY=false
- jdk: openjdk9
env: SHOULD_DEPLOY=false
- jdk: oraclejdk10
- jdk: openjdk10
env: SHOULD_DEPLOY=false
- jdk: oraclejdk11
- jdk: openjdk11
env: SHOULD_DEPLOY=false
allow_failures:
- jdk: oraclejdk11
- jdk: openjdk11
before_install:
- bash .travis/deploy-codesigning.sh
install:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class DozerConstants {
private DozerConstants() {
}

public static final String CURRENT_VERSION = "6.4.1";
public static final String CURRENT_VERSION = "6.5.0-SNAPSHOT";

public static final boolean DEFAULT_WILDCARD_POLICY = true;
public static final boolean DEFAULT_WILDCARD_CASE_INSENSITIVE_POLICY = false;
Expand Down