-
Notifications
You must be signed in to change notification settings - Fork 83
/
build.gradle
43 lines (37 loc) · 1.37 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
group 'com.boyuanitsm'
// version '1.0-SNAPSHOT'
version '1.3.1'
description 'Payment set and refactoring.'
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenLocal();
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
testCompile "junit:junit:4.11"
testCompile "org.springframework.boot:spring-boot-starter-web:1.3.5.RELEASE"
testCompile "commons-io:commons-io:2.4"
compile "com.github.kenglxn.QRGen:javase:2.2.0"
compile "com.esotericsoftware.yamlbeans:yamlbeans:1.09"
compile "org.slf4j:slf4j-api:1.7.21"
compile "org.apache.httpcomponents:httpclient:4.5.2"
compile "com.thoughtworks.xstream:xstream:1.4.7"
compile group: 'commons-httpclient', name: 'commons-httpclient', version: '3.0.1'
compile group: 'commons-codec', name: 'commons-codec', version: '1.6'
compile group: 'commons-logging', name: 'commons-logging', version: '1.1.1'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'dom4j', name: 'dom4j', version: '1.6.1'
compile group: 'jaxen', name: 'jaxen', version: '1.1.1'
compile group: 'org.bouncycastle', name: 'bcprov-jdk16', version: '1.46'
}
// build source jar
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}