-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (49 loc) · 1.13 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "jdepend:jdepend:2.9.1"
}
}
plugins {
id "com.github.johnrengelman.shadow" version "5.2.0"
}
apply plugin: "java"
apply plugin: "idea"
compileJava.options.encoding = "UTF-8"
javadoc.options.encoding = "UTF-8"
defaultTasks "build"
version = "0.1"
repositories {
maven {
url "/home/jbalint/sw/java-sw/stardog/settings/mvn"
}
mavenLocal()
jcenter()
maven {
url "https://maven.stardog.com"
}
}
dependencies {
implementation "com.complexible.stardog:client-http:7.1.0"
testImplementation "junit:junit:4.12"
}
sourceSets {
main {
java {
srcDir "src/main/java"
}
}
}
apply plugin: 'application'
// mainClassName = "java.util.prefs.Base64"
// applicationDefaultJvmArgs = ["-agentlib:yt=runfile=load1.lua", "-agentpath:/home/jbalint/lib/oprofile/libjvmti_oprofile.so", "-XX:-Inline"]
//mainClassName = "com.jbalint.jora.proto.JarToRdf"
mainClassName = "com.jbalint.jora.proto.JarDirToRdf"
run {
doLast {
standardInput = System.in
args "$jardir", "$outfile"
}
}