-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.gradle
52 lines (38 loc) · 1.21 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
apply plugin: 'java'
apply plugin: 'maven'
// Publishing stuff
group = 'com.github.jjos2372'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.ow2.asm:asm-tree:7.1'
//implementation 'com.github.signum-network:signumj:v1.0.0'
implementation 'com.github.signum-network:signumj:f2522b5480'
implementation 'io.reactivex.rxjava2:rxjava:2.2.15'
implementation 'com.github.jiconfont:jiconfont-swing:1.0.0'
implementation 'com.github.jiconfont:jiconfont-font_awesome:4.7.0.1'
//logging
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
implementation 'org.apache.logging.log4j:log4j-core:2.15.0'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
// commons lang utilities
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}