-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
67 lines (51 loc) · 1.35 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
group 'ru.smevx.crypto'
version '1.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
publishing {
repositories {
maven {
mavenLocal()
}
}
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourceJar {
classifier "sources"
}
}
}
}
dependencies {
compile('org.apache.commons:commons-lang3:3.6')
compile('org.bouncycastle:bcprov-jdk15on:1.50')
compile('org.bouncycastle:bcpkix-jdk15on:1.50')
compile('commons-logging:commons-logging:1.1.1')
compile('xalan:serializer:2.7.1')
compile('xalan:xalan:2.7.0')
compile ('org.apache.httpcomponents:httpcore:4.2')
compile ('org.apache.httpcomponents:httpclient:4.2')
compile('org.apache.santuario:xmlsec:1.5.8')
compile('org.apache.ws.security:wss4j:1.6.6') {
exclude group: 'org.opensaml', module: 'opensaml'
}
compile('com.google.guava:guava:17.0')
testCompile('junit:junit:4.12')
}
task installDeps(type: Copy) {
dependsOn build
into "$buildDir/libs/deps"
from configurations.compile
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
}
check.dependsOn.remove(test)