forked from OddPrints/pwinty-java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (70 loc) · 2.29 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
80
81
82
83
84
85
group 'uk.co.mattburns.pwinty'
version '2.2.6'
apply plugin: 'java'
apply plugin: 'maven'
buildscript {
repositories {
mavenCentral()
}
}
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
jar {
manifest {
attributes 'Implementation-Title': 'pwinty-java-sdk',
'Implementation-Version': version
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'joda-time:joda-time:2.7'
compile 'com.sun.jersey:jersey-core:1.17'
compile 'com.sun.jersey:jersey-server:1.17'
compile 'com.sun.jersey:jersey-client:1.17'
compile 'com.sun.jersey:jersey-servlet:1.17'
compile 'com.sun.jersey.contribs:jersey-multipart:1.17'
compile 'com.google.code.gson:gson:2.3'
testCompile 'junit:junit:4.+'
}
test {
testLogging {
events "passed", "skipped", "failed"
}
// This prevents SecureRandom from causing very slow tests.
// Another solution is to change $JAVA_HOME/jre/lib/security/java.security. Replace securerandom.source with securerandom.source=file:/dev/./urandom.
systemProperty "java.security.egd", "file:/dev/./urandom"
systemProperty "PWINTY_MERCHANT_ID_SANDBOX", "${PWINTY_MERCHANT_ID_SANDBOX}"
systemProperty "PWINTY_MERCHANT_KEY_SANDBOX", "${PWINTY_MERCHANT_KEY_SANDBOX}"
systemProperty "PWINTY_MERCHANT_ID_LIVE", "${PWINTY_MERCHANT_ID_LIVE}"
systemProperty "PWINTY_MERCHANT_KEY_LIVE", "${PWINTY_MERCHANT_KEY_LIVE}"
}
// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn:javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
// add javadoc/source jar tasks as artifacts
artifacts {
archives sourcesJar
archives javadocJar
}
uploadArchives {
repositories {
mavenDeployer {
repository(
url: "${nexusUrl}/content/repositories/releases") {
authentication(userName: nexusUsername, password: nexusPassword)
}
snapshotRepository(
url: "${nexusUrl}/content/repositories/snapshots") {
authentication(userName: nexusUsername, password: nexusPassword)
}
}
}
}