-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
40 lines (32 loc) · 885 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish' // gradle publishToMavenLocal
group = 'com.netthreads.libgdx'
version = '1.0.5-SNAPSHOT'
description = """Netthreads LibGDX Extensions"""
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'com.google.inject', name: 'guice', version:'3.0', classifier:'no_aop'
compile group: 'com.badlogicgames.gdx', name: 'gdx', version:'1.9.4'
compile group: 'com.badlogicgames.gdx', name: 'gdx-box2d', version:'1.9.4'
compile "aurelienribon:tweenengine:6.3.3"
compile "aurelienribon:tweenengine:6.3.3:sources"
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
jar {
from('src/main/java') {
include '**/*.java'
include '**/*.xml'
}
}