-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.23 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
group = 'org.irmacard.api'
version = '2.0.1'
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = '1.8'
repositories {
mavenLocal()
maven {
url 'https://credentials.github.io/repos/maven2/'
}
mavenCentral()
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
dependencies {
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.http-client:google-http-client:1.43.3'
implementation 'commons-codec:commons-codec:1.16.1'
implementation 'commons-io:commons-io:2.7'
implementation 'de.henku.jpaillier:jpaillier:0.1.2'
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.bouncycastle:bcpkix-jdk18on:1.77'
implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
if ( project.hasProperty('mavenRepositoryIRMA') ) {
uploadArchives.repositories.mavenDeployer {
repository(url: mavenRepositoryIRMA)
}
}