Skip to content

Commit f20e1ef

Browse files
committed
release 0.14.1
Signed-off-by: Peter Gafert <peter.gafert@tngtech.com>
1 parent 91e8f44 commit f20e1ef

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
subprojects {
2-
apply plugin: 'java'
2+
apply plugin: 'java-library'
33

44
repositories {
55
mavenCentral()
66
}
77

88
dependencies {
99
// These are the 'production' dependencies of the Demo src/main/java files -> just for Demo purposes, otherwise irrelevant
10-
compile 'javax.annotation:javax.annotation-api:1.3.2'
11-
compile 'org.apache.geronimo.specs:geronimo-ejb_3.1_spec:1.0'
12-
compile 'org.apache.geronimo.specs:geronimo-jpa_2.0_spec:1.0'
13-
compile 'joda-time:joda-time:2.0'
14-
compile 'org.springframework:spring-beans:5.2.2.RELEASE'
15-
compile 'com.google.inject:guice:4.2.3'
10+
implementation 'javax.annotation:javax.annotation-api:1.3.2'
11+
implementation 'org.apache.geronimo.specs:geronimo-ejb_3.1_spec:1.0'
12+
implementation 'org.apache.geronimo.specs:geronimo-jpa_2.0_spec:1.0'
13+
implementation 'joda-time:joda-time:2.0'
14+
implementation 'org.springframework:spring-beans:5.2.2.RELEASE'
15+
implementation 'com.google.inject:guice:4.2.3'
1616
}
1717
}
1818

example-junit4/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
dependencies {
2-
testCompile('com.tngtech.archunit:archunit-junit4:0.14.0') {
3-
exclude group: 'com.tngtech.archunit', module: 'archunit-junit'
4-
}
2+
testImplementation 'com.tngtech.archunit:archunit-junit4:0.14.1'
53
}

example-junit5/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
dependencies {
2-
testCompile('com.tngtech.archunit:archunit-junit5:0.14.0') {
3-
exclude group: 'com.tngtech.archunit', module: 'archunit-junit'
4-
}
2+
testImplementation 'com.tngtech.archunit:archunit-junit5:0.14.1'
53
}
64

75
test {

example-plain/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
testCompile 'junit:junit:4.12' // We will use JUnit to run the tests, but for this example it is irrelevant, might as well be TestNG
2+
testImplementation 'junit:junit:4.12' // We will use JUnit to run the tests, but for this example it is irrelevant, might as well be TestNG
33

4-
testCompile 'com.tngtech.archunit:archunit:0.14.0'
5-
}
4+
testImplementation 'com.tngtech.archunit:archunit:0.14.1'
5+
}

0 commit comments

Comments
 (0)