gdx-toolbox/build.gradle

42 lines
878 B
Groovy
Raw Normal View History

2013-11-19 08:26:26 -05:00
apply plugin: "java"
apply plugin: "maven"
apply plugin: "eclipse"
apply plugin: "idea"
2013-11-30 12:45:50 -05:00
group = "ca.blarg.gdx"
2013-11-19 08:26:26 -05:00
version = "0.1-SNAPSHOT"
ext.appName = "gdx-toolbox"
ext.gdxVersion = "1.0.0"
2013-11-19 08:26:26 -05:00
sourceCompatibility = 1.6
2014-04-30 18:35:51 -04:00
configurations {
deployerJars
}
2013-11-19 08:26:26 -05:00
repositories {
mavenCentral()
maven { url "http://oss.sonatype.org/content/repositories/releases/" }
mavenLocal()
}
dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
2014-04-30 18:35:51 -04:00
deployerJars "org.apache.maven.wagon:wagon-ssh:2.2"
}
uploadArchives {
repositories.mavenDeployer {
configuration = configurations.deployerJars
uniqueVersion = false
repository(url: mavenDeployUrl) {
authentication(userName: mavenDeployUser, privateKey: mavenDeployPrivateKeyFile)
}
}
2013-11-19 08:26:26 -05:00
}
eclipse.project {
name = appName
2013-11-30 12:45:50 -05:00
}