Skip to content

Commit

Permalink
Release v1.1.0 with CM v6.7.0 (Java 17 compatible)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kapferer committed Dec 2, 2022
1 parent b818b54 commit 77a530b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand All @@ -19,7 +19,7 @@ testImplementation 'org.contextmapper:context-mapper-archunit-extension:1.0.0'
<dependency>
<groupId>org.contextmapper</groupId>
<artifactId>context-mapper-archunit-extension</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ plugins {

group 'org.contextmapper'

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
sourceCompatibility = '11'
targetCompatibility = '11'

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 77a530b

Please sign in to comment.