-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (31 loc) · 869 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version "0.0.1-SNAPSHOT"
description = """io-lib"""
allprojects {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
google()
}
}
subprojects {
apply plugin: 'java-library'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.6.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.6.2'
}
test {
useJUnitPlatform()
}
}
wrapper {
gradleVersion = '6.4.1'
distributionType = Wrapper.DistributionType.ALL
}