-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24a7412
commit e8a617c
Showing
9 changed files
with
452 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
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() | ||
} | ||
|
||
group = 'org.mini2Dx' | ||
version = "$libgdxVersion" | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
dependencies { | ||
compile "org.mini2Dx:gdx-math:$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', "$libgdxVersion" | ||
} | ||
|
||
task copyLicenseFiles(type: Copy, dependsOn: checkoutLibGdxTag) { | ||
from('libgdx') { | ||
include 'LICENSE' | ||
} | ||
into './' | ||
} | ||
|
||
task copyXmlClasses(type: Copy, dependsOn: copyLicenseFiles) { | ||
from('libgdx/gdx/src/com/badlogic/gdx/utils') { | ||
include 'BufferUtils.java', 'SerializationException.java', 'StreamUtils.java', 'XmlReader.java', 'XmlWriter.java' | ||
|
||
filter { String line -> | ||
line.contains('com.badlogic.gdx.graphics') || | ||
line.contains('com.badlogic.gdx.utils.Scaling') || | ||
line.contains('import com.badlogic.gdx.files.FileHandle;') || | ||
line.contains('com.badlogic.gdx.utils.StringBuilder') ? null : ( | ||
line.contains("package com.badlogic.gdx.utils;") ? "package org.mini2Dx.gdx.xml;\nimport org.mini2Dx.gdx.utils.*;\nimport java.io.*;" : ( | ||
line.contains('FileHandle file') ? line.replace('FileHandle file', 'File file') : ( | ||
line.contains("file.reader(\"UTF-8\")") ? line.replace("file.reader(\"UTF-8\")", "new FileReader(file)") : ( | ||
line.contains('com.badlogic.gdx') ? line.replace('com.badlogic.gdx', 'org.mini2Dx.gdx') : line | ||
) | ||
) | ||
) | ||
) | ||
} | ||
} | ||
into 'src/main/java/org/mini2Dx/gdx/xml' | ||
} | ||
|
||
compileJava.dependsOn copyXmlClasses | ||
|
||
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-xml' | ||
|
||
scm { | ||
connection 'scm:git:https://github.com/mini2Dx/gdx-xml.git' | ||
developerConnection 'scm:git:[email protected]:mini2Dx/gdx-xml.git' | ||
url 'https://github.com/mini2Dx/gdx-xml.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' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
libgdxVersion=1.9.8 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#Fri Oct 21 20:44:33 CEST 2016 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip |
Oops, something went wrong.