-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
116 lines (97 loc) · 2.75 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.+"
}
}
plugins {
id "com.diffplug.spotless" version "5.5.1"
}
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'java'
apply plugin: 'maven'
group 'uk.co.mattburns.pwinty'
version '2.6.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
jar {
manifest {
attributes 'Implementation-Title': 'pwinty-java-sdk',
'Implementation-Version': version
}
}
spotless {
java {
googleJavaFormat().aosp()
}
}
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
}
artifactoryPublish {
dependsOn sourcesJar, javadocJar
}
// add javadoc/source jar tasks as artifacts
artifacts {
archives sourcesJar
archives javadocJar
}
configurations {
published
}
artifactory {
contextUrl = "${artifactoryUrl}"
publish {
repository {
repoKey = "libs-release-local"
username = "${artifactoryUsername}"
password = "${artifactoryPassword}"
}
defaults {
publishConfigs('archives', 'published')
publishArtifacts = true
properties = ['qa.level': 'basic', 'dev.team' : 'core']
publishPom = true
}
}
resolve {
repository {
repoKey = 'libs-release'
maven = true
}
}
}