diff --git a/.github/workflows/build_master.yml b/.github/workflows/build_master.yml index f272b90..2312b8e 100644 --- a/.github/workflows/build_master.yml +++ b/.github/workflows/build_master.yml @@ -15,10 +15,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v1 with: - java-version: 11 + java-version: 17 - name: Gradle caches uses: actions/cache@v2 with: diff --git a/.github/workflows/build_standard.yml b/.github/workflows/build_standard.yml index 1b68108..f5a580a 100644 --- a/.github/workflows/build_standard.yml +++ b/.github/workflows/build_standard.yml @@ -14,10 +14,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v1 with: - java-version: 11 + java-version: 17 - name: Gradle caches uses: actions/cache@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3cfe1e8..e7da93e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,10 +13,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v1 with: - java-version: 11 + java-version: 17 - name: Gradle caches uses: actions/cache@v2 with: diff --git a/README.md b/README.md index fde8c8b..3988324 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can use this library to write ArchUnit tests by including it into your Gradl **Gradle:** ```gradle -testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.0.0' +testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.1.0' ``` **Maven:** @@ -19,7 +19,7 @@ testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.0.0' org.contextmapper context-mapper-archunit-extension - 1.0.0 + 1.1.0 ``` diff --git a/build.gradle b/build.gradle index 267a48d..b08fb9d 100644 --- a/build.gradle +++ b/build.gradle @@ -8,8 +8,8 @@ plugins { group 'org.contextmapper' -sourceCompatibility = '1.8' -targetCompatibility = '1.8' +sourceCompatibility = '11' +targetCompatibility = '11' repositories { mavenCentral() diff --git a/gradle.properties b/gradle.properties index 3795260..666b157 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,9 +3,9 @@ ossSnapshotRepository=https://oss.sonatype.org/content/repositories/snapshots/ ossReleaseStagingRepository=https://oss.sonatype.org/service/local/staging/deploy/maven2/ # dependency versions -jUnitVersion=5.7.0 +jUnitVersion=5.9.1 assertJVersion=3.19.0 archUnitVersion=0.18.0 -cmlVersion=6.6.1 +cmlVersion=6.7.0 jmoleculesVersion=1.2.0 xtendLibVersion=2.19.0