-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (35 loc) · 839 Bytes
/
build.gradle
File metadata and controls
40 lines (35 loc) · 839 Bytes
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
buildscript {
repositories {
maven {
url = 'https://plugins.gradle.org/m2'
}
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
classpath 'gradle.plugin.net.minecrell:licenser:0.2.1'
}
}
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'xyz.lexteam.agame'
version = '1.0.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = 'lex-releases'
url = 'http://repo.lexteam.xyz/maven/releases/'
}
maven {
name = 'lex-snapshots'
url = 'http://repo.lexteam.xyz/maven/snapshots/'
}
}
ext {
gdxVersion = '1.9.2'
ashleyVersion = '1.7.0'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}