-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (44 loc) · 1.02 KB
/
build.gradle
File metadata and controls
56 lines (44 loc) · 1.02 KB
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
group 'com.github.texxel'
version '0.2.3'
apply plugin: 'java'
sourceCompatibility = 1.7
sourceSets {
gen {
java {
srcDirs 'src/main/java', 'src/gen/java'
}
}
}
configurations {
natives
}
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
jcenter()
}
dependencies {
natives files('libs/data-natives.jar');
compile files('libs/gdx-jnigen-1.9.4.jar');
compile 'com.github.javaparser:javaparser-core:2.3.0'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.+'
compile 'com.badlogicgames.gdx:gdx:1.7.2'
compile "com.badlogicgames.gdx:gdx-backend-headless:1.7.2"
compile "com.badlogicgames.gdx:gdx-platform:1.7.2:natives-desktop"
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
jar {
from {
configurations.natives.collect { it.isDirectory() ? it : zipTree(it) }
}
}
artifacts {
files('libs/data-natives.jar');
}