-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 1.14 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
apply plugin: 'java'
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation "junit:junit:4.12"
implementation "commons-cli:commons-cli:1.6.0"
implementation group: 'org.bitbucket.mstrobel', name: 'procyon-compilertools', version: '0.6.0'
implementation group: 'org.json', name: 'json', version: '20230227'
implementation "com.github.javaparser:javaparser-symbol-solver-core:3.25.1"
implementation group: 'com.opencsv', name: 'opencsv', version: '4.6'
implementation 'junit:junit:4.13.1'
implementation 'de.kherud:llama:3.2.1'
testImplementation "junit:junit:4.12"
}
jar {
archiveBaseName = 'fixcheck'
archiveVersion = '1.0.0'
}
task shadowJar(type: Jar) {
manifest {
attributes 'Main-Class': 'org.imdea.fixcheck.FixCheck'
}
archiveBaseName = 'fixcheck-all'
archiveVersion = '1.0.0'
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}