Fixed problems with buildscript

Signed-off-by: deathrat <deathrat43@gmail.com>
This commit is contained in:
deathrat
2013-12-17 19:09:53 -05:00
parent a8baba9430
commit 8d19d71d8a
4 changed files with 12 additions and 4 deletions

View File

@@ -13,6 +13,8 @@ buildscript {
apply plugin: 'forge'
version = "2.1.1RC1"
group= "com.stevenrs11.dimdoors" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "dimdoors"
@@ -21,6 +23,9 @@ minecraft {
version = "1.6.4-9.11.1.964"
}
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
processResources
{
// replace stuff in mcmod.info, nothing else
@@ -39,6 +44,5 @@ processResources
jar
{
destinationDir = "build/dist/"
archiveName = "DimensionalDoors-$version.jar"
destinationDir = new File("build/dist/")
}