forked from chuckb/haikuVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (49 loc) · 790 Bytes
/
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
apply plugin: 'java'
apply from: 'gradle/jitpack.gradle'
repositories {
jcenter()
}
configurations {
// configuration that holds jars to copy into distribution
releaseJars
}
dependencies {
releaseJars project(":haikufier")
}
jar {
manifest {
attributes('Implementation-Title': "${project.group}.${project.name}",
'Implementation-Version': version)
}
into("bin") {
from {
files("bin")
}
}
into("lib/pc") {
from configurations.releaseJars
}
into("lib/nxt") {
from {
files("lib/nxt")
}
}
into("haikuVM") {
from {
files("haikuVM")
}
}
into("hardware") {
from {
files("hardware")
}
}
into("config") {
from {
files("config")
}
}
}
artifacts {
archives jar
}