-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle
40 lines (33 loc) · 1.04 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
buildscript {
repositories {
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
mainClassName = "com.jblur.acme_client.Application"
jar {
baseName = 'acme_client'
manifest {
attributes "Main-Class": "$mainClassName"
}
doFirst {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'org.shredzone.acme4j', name: 'acme4j-client', version: '2.7'
compile group: 'org.shredzone.acme4j', name: 'acme4j-utils', version: '2.7'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.62'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile group: 'com.beust', name: 'jcommander', version: '1.72'
}