File tree 4 files changed +27
-6
lines changed
4 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ buildscript {
3
3
maven {
4
4
url " https://plugins.gradle.org/m2/"
5
5
}
6
+
7
+ mavenLocal()
6
8
}
7
9
dependencies {
8
- classpath " gradle.plugin. org.javamodularity:moduleplugin:1.0.1 "
10
+ classpath " org.javamodularity:moduleplugin:1.6.1-SNAPSHOT "
9
11
}
10
12
}
11
13
@@ -17,8 +19,8 @@ subprojects {
17
19
group ' codeone'
18
20
version ' 1.0-SNAPSHOT'
19
21
20
- sourceCompatibility = 11
21
- targetCompatibility = 11
22
+ sourceCompatibility = 12
23
+ targetCompatibility = 12
22
24
23
25
repositories {
24
26
mavenCentral()
Original file line number Diff line number Diff line change 1
- # Tue Oct 23 09:11:42 PDT 2018
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.8-all.zip
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' java'
3
+ }
4
+
5
+ test {
6
+ useJUnitPlatform()
7
+
8
+ testLogging {
9
+ events ' PASSED' , ' FAILED' , ' SKIPPED'
10
+ }
11
+ }
12
+
13
+ dependencies {
14
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.3.1'
15
+ testImplementation ' org.junit.jupiter:junit-jupiter-params:5.3.1'
16
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.3.1'
17
+ testCompile(" org.junit.jupiter:junit-jupiter-params:5.4.2" )
18
+ }
19
+
20
+
Original file line number Diff line number Diff line change 1
1
apply plugin : ' application'
2
2
3
3
dependencies {
4
- compile ' io.vertx:vertx-web:3.5 .3'
4
+ compile ' io.vertx:vertx-web:3.6 .3'
5
5
compile ' org.slf4j:slf4j-api:1.7.25'
6
6
runtime ' org.slf4j:slf4j-simple:1.7.25'
7
7
You can’t perform that action at this time.
0 commit comments