-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.17 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
allprojects {
buildscript {
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://repo.spring.io/libs-snapshot' }
maven { url 'https://repository.jboss.org/nexus/content/repositories/releases' }
}
}
apply plugin: 'eclipse'
eclipse.classpath.downloadJavadoc = true
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven { url 'https://repo.spring.io/libs-snapshot' }
maven { url 'https://repository.jboss.org/nexus/content/repositories/releases' }
}
}
configure([project(':align-common'), project(':align-swing'), project(':align-ws')]) {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
build.mustRunAfter clean
dependencies {
testImplementation 'junit:junit:4.12'
testCompile "org.hamcrest:hamcrest-core:1.3"
testCompile "org.hamcrest:hamcrest-library:1.3"
}
}
subprojects {
version = '1.0'
task stage(dependsOn: ['build', 'clean'])
}
defaultTasks 'build'
wrapper {
description "Regenerates the Gradle Wrapper files"
gradleVersion = '5.0'
distributionUrl = "https://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}