Skip to content

Commit b7f776e

Browse files
committed
update gradle
1 parent ffc6ca8 commit b7f776e

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

Diff for: build.gradle

+5-3
Original file line numberDiff line numberDiff 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()

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Tue Oct 23 09:11:42 PDT 2018
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip

Diff for: stockwatch.api/build.gradle

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+

Diff for: stockwatch.web/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'application'
22

33
dependencies {
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

0 commit comments

Comments
 (0)