-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
68 lines (56 loc) · 1.26 KB
/
Copy pathbuild.gradle
File metadata and controls
68 lines (56 loc) · 1.26 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
57
58
59
60
61
62
63
64
65
66
67
68
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.jfrog.bintray" version "1.6"
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'
ext {
GROUPID = 'com.hi5dev.box2d_pexml'
VERSION = '0.0.1'
gdxVersion = '1.9.2'
}
group GROUPID
version VERSION
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
jcenter()
mavenCentral()
}
publishing {
publications {
PEXMLPublication(MavenPublication) {
from components.java
groupId GROUPID
artifactId 'box2d-pexml'
version VERSION
}
}
}
bintray {
user = 'hi5dev'
key = System.getenv('BINTRAY_KEY')
publications = ['PEXMLPublication']
pkg {
repo = 'maven'
name = 'box2d-pexml'
userOrg = 'hi5dev'
licenses = ['MIT']
vcsUrl = 'https://github.com/hi5/box2d_pexml.git'
}
version {
name = VERSION
desc = "LibGDX Box2D Physics Editor XML parser"
released = new Date()
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
}