-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (23 loc) · 780 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
group 'au.org.ala'
version '1.2-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'maven'
repositories {
maven {
url "http://nexus.ala.org.au/nexus/content/groups/public"
}
mavenCentral()
}
sourceCompatibility = 1.7
uploadArchives {
repositories {
mavenDeployer {
repository(url: 'http://nexus.ala.org.au/content/repositories/releases/') {
authentication(userName: System.env['TRAVIS_DEPLOY_USERNAME'], password: System.env['TRAVIS_DEPLOY_PASSWORD'])
}
snapshotRepository(url: 'http://nexus.ala.org.au/content/repositories/snapshots/') {
authentication(userName: System.env['TRAVIS_DEPLOY_USERNAME'], password: System.env['TRAVIS_DEPLOY_PASSWORD'])
}
}
}
}