File tree Expand file tree Collapse file tree 4 files changed +27
-6
lines changed Expand file tree Collapse file tree 4 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ buildscript {
33 maven {
44 url " https://plugins.gradle.org/m2/"
55 }
6+
7+ mavenLocal()
68 }
79 dependencies {
8- classpath " gradle.plugin. org.javamodularity:moduleplugin:1.0.1 "
10+ classpath " org.javamodularity:moduleplugin:1.6.1-SNAPSHOT "
911 }
1012}
1113
@@ -17,8 +19,8 @@ subprojects {
1719 group ' codeone'
1820 version ' 1.0-SNAPSHOT'
1921
20- sourceCompatibility = 11
21- targetCompatibility = 11
22+ sourceCompatibility = 12
23+ targetCompatibility = 12
2224
2325 repositories {
2426 mavenCentral()
Original file line number Diff line number Diff line change 1- # Tue Oct 23 09:11:42 PDT 2018
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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 11apply plugin : ' application'
22
33dependencies {
4- compile ' io.vertx:vertx-web:3.5 .3'
4+ compile ' io.vertx:vertx-web:3.6 .3'
55 compile ' org.slf4j:slf4j-api:1.7.25'
66 runtime ' org.slf4j:slf4j-simple:1.7.25'
77
You can’t perform that action at this time.
0 commit comments