-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
60 lines (42 loc) · 1.18 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-RC2'
}
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'idea'
version='1.0.0'
group='com.aaaagames'
compileTestJava {
sourceCompatibility = 1.7
targetCompatibility = 1.7
options.compilerArgs += '-parameters'
}
repositories {
mavenLocal()
jcenter()
// Temporary until JME jars are in jcenter()
maven { url "http://dl.bintray.com/jmonkeyengine/org.jmonkeyengine" }
}
// Make sure the build file declares what it actually imports
configurations.compile {
transitive = false
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile "org.jmonkeyengine:jme3-effects:3.3.+"
compile "org.jmonkeyengine:jme3-core:3.3.+"
compile "org.jmonkeyengine:jme3-terrain:3.3.+"
//compile "com.jme3:jme3-core:unknown"
}
// To specify a license in the pom:
install {
repositories.mavenInstaller {
pom.version = version
pom.artifactId = 'aaaaGames'
}
}