-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
79 lines (64 loc) · 2.1 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
group 'xyz.thepathfinder'
version '0.0.3'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
repositories {
mavenCentral()
}
def sonauser = hasProperty('ossrhUsername') ? ossrhUsername : ''
def sonapass = hasProperty('ossrhPassword') ? ossrhPassword : ''
dependencies {
compile 'com.google.guava:guava:19.0'
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
classifier 'sources'
}
task javadocJar(type: Jar) {
classifier 'javadoc'
from javadoc
}
artifacts {
archives javadocJar, sourceJar
}
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: sonauser, password: sonapass)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: sonauser, password: sonapass)
}
pom.project {
name 'Simulated Annealing'
packaging 'jar'
description 'A simulated annealing framework.'
url 'https://github.com/csse497/simulatedannealing'
scm {
connection 'scm:git:git://github.com/csse497/simulatedannealing'
developerConnection 'scm:git:git://github.com/csse497/simulatedannealing'
url 'https://github.com/csse497/simulatedannealing'
}
licenses {
license {
name 'MIT'
url 'https://raw.githubusercontent.com/CSSE497/simulatedannealing/master/LICENSE'
}
}
developers {
developer {
id 'ajmichael'
name 'Adam Michael'
email '[email protected]'
}
}
}
}
}
}