Skip to content

Commit 77a530b

Browse files
author
Stefan Kapferer
committed
Release v1.1.0 with CM v6.7.0 (Java 17 compatible)
1 parent b818b54 commit 77a530b

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/build_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@v2
1616
with:
1717
fetch-depth: 0
18-
- name: Set up JDK 11
18+
- name: Set up JDK 17
1919
uses: actions/setup-java@v1
2020
with:
21-
java-version: 11
21+
java-version: 17
2222
- name: Gradle caches
2323
uses: actions/cache@v2
2424
with:

.github/workflows/build_standard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 0
17-
- name: Set up JDK 11
17+
- name: Set up JDK 17
1818
uses: actions/setup-java@v1
1919
with:
20-
java-version: 11
20+
java-version: 17
2121
- name: Gradle caches
2222
uses: actions/cache@v2
2323
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0
16-
- name: Set up JDK 11
16+
- name: Set up JDK 17
1717
uses: actions/setup-java@v1
1818
with:
19-
java-version: 11
19+
java-version: 17
2020
- name: Gradle caches
2121
uses: actions/cache@v2
2222
with:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can use this library to write ArchUnit tests by including it into your Gradl
1010
**Gradle:**
1111

1212
```gradle
13-
testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.0.0'
13+
testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.1.0'
1414
```
1515

1616
**Maven:**
@@ -19,7 +19,7 @@ testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.0.0'
1919
<dependency>
2020
<groupId>org.contextmapper</groupId>
2121
<artifactId>context-mapper-archunit-extension</artifactId>
22-
<version>1.0.0</version>
22+
<version>1.1.0</version>
2323
</dependency>
2424
```
2525

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ plugins {
88

99
group 'org.contextmapper'
1010

11-
sourceCompatibility = '1.8'
12-
targetCompatibility = '1.8'
11+
sourceCompatibility = '11'
12+
targetCompatibility = '11'
1313

1414
repositories {
1515
mavenCentral()

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ ossSnapshotRepository=https://oss.sonatype.org/content/repositories/snapshots/
33
ossReleaseStagingRepository=https://oss.sonatype.org/service/local/staging/deploy/maven2/
44

55
# dependency versions
6-
jUnitVersion=5.7.0
6+
jUnitVersion=5.9.1
77
assertJVersion=3.19.0
88
archUnitVersion=0.18.0
9-
cmlVersion=6.6.1
9+
cmlVersion=6.7.0
1010
jmoleculesVersion=1.2.0
1111
xtendLibVersion=2.19.0

0 commit comments

Comments
 (0)