move this to a directory that doesn't get deleted

This commit is contained in:
Jesse Boyd 2016-08-28 23:06:15 +10:00
parent 57fed361f0
commit f2d54e6e97
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ processResources {
}
jar.archiveName="fawe-api-${project.parent.version}.jar"
jar.destinationDir = file '../target/com/boydti/fawe-api/' + project.parent.version
jar.destinationDir = file '../mvn/com/boydti/fawe-api/' + project.parent.version
task createPom << {
pom {
@ -28,7 +28,7 @@ task createPom << {
artifactId 'fawe-api'
version project.parent.version
}
}.writeTo("../target/com/boydti/fawe-api/${project.parent.version}/fawe-api-${project.parent.version}.pom")
}.writeTo("../mvn/com/boydti/fawe-api/${project.parent.version}/fawe-api-${project.parent.version}.pom")
}
build.finalizedBy(createPom)