-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
174 lines (146 loc) · 4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import org.apache.tools.ant.filters.*
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://github.com/steffenschaefer/gwt-gradle-plugin/raw/maven-repo/' }
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.9.0'
}
}
if(project.hasProperty('ossrhUser') && project.hasProperty("release")) {
apply plugin: "io.codearte.nexus-staging"
nexusStaging {
packageGroup = 'org.mini2Dx'
username = ossrhUser
password = ossrhPassword
}
}
apply plugin: "java"
apply plugin: "signing"
apply plugin: "maven"
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
group = 'org.mini2Dx'
version = "$libgdxVersion"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.mini2Dx:gdx-collections:$libgdxVersion"
}
task cleanSrcDir(type: Delete) {
delete 'src/main/java/org'
}
clean.dependsOn cleanSrcDir
File libGdxDirectory = file("libgdx");
if(libGdxDirectory.exists()) {
task checkoutLibGdxMaster(type: Exec) {
workingDir './libgdx'
commandLine 'git', 'checkout', 'master'
}
task pullLatestLibGdxMaster(type: Exec, dependsOn: checkoutLibGdxMaster) {
workingDir './libgdx'
commandLine 'git', 'pull', 'origin', 'master'
}
task fetchLatestLibGdxTags(type: Exec, dependsOn: pullLatestLibGdxMaster) {
workingDir './libgdx'
commandLine 'git', 'fetch', '--tags', 'origin', 'master'
}
} else {
task fetchLatestLibGdxTags(type: Exec) {
commandLine 'git', 'clone', '--progress', 'https://github.com/libgdx/libgdx.git', 'libgdx'
}
}
task checkoutLibGdxTag(type: Exec, dependsOn: fetchLatestLibGdxTags) {
workingDir './libgdx'
commandLine 'git', 'checkout', "gdx-parent-$libgdxVersion"
}
task copyLicenseFiles(type: Copy, dependsOn: checkoutLibGdxTag) {
from('libgdx') {
include 'LICENSE'
}
into './'
}
task copyMathClasses(type: Copy, dependsOn: copyLicenseFiles) {
from('libgdx/gdx/src/com/badlogic/gdx/math') {
include '**/*.java'
filter { String line ->
line.contains('com.badlogic.gdx.graphics') ||
line.contains('com.badlogic.gdx.utils.Scaling') ||
line.contains('com.badlogic.gdx.utils.StringBuilder') ? null : (
line.contains('com.badlogic.gdx') ? line.replace('com.badlogic.gdx', 'org.mini2Dx.gdx') : line
)
}
}
into 'src/main/java/org/mini2Dx/gdx/math'
}
compileJava.dependsOn copyMathClasses
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
if(project.hasProperty('ossrhUser')) {
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
// POM signature
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
// Target repository
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUser, password: ossrhPassword)
}
pom.project {
name project.name
description project.description
packaging 'jar'
url 'https://github.com/mini2Dx/gdx-math'
scm {
connection 'scm:git:https://github.com/mini2Dx/gdx-math.git'
developerConnection 'scm:git:[email protected]:mini2Dx/gdx-math.git'
url 'https://github.com/mini2Dx/gdx-math.git'
}
licenses {
license {
name 'Apache License, Version 2.0'
url 'https://opensource.org/licenses/Apache-2.0'
distribution 'repo'
}
}
developers {
developer {
id = 'tomcashman'
name = 'Thomas Cashman'
email = '[email protected]'
}
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}