-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 713 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 713 Bytes
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
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'org.jmatbench'
version = '0.13-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
javadoc.failOnError = false
repositories {
mavenCentral()
mavenLocal()
maven {url = "https://oss.sonatype.org/content/repositories/snapshots/"}
}
sourceSets {
main { java { srcDir 'src' } }
test { java { srcDir 'test' } }
}
dependencies {
implementation fileTree(dir: 'libs', include: '*.jar')
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
}
wrapper {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = '7.3.3'
}