mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 14:46:45 +01:00
Merge pull request #1023 from dmodoomsirius/master
Give the ability to clean the output directory
This commit is contained in:
commit
bd633c0150
10
build.gradle
10
build.gradle
@ -13,6 +13,16 @@ group = 'com.intellectualcrafters'
|
||||
version = '3.3.3-SNAPSHOT'
|
||||
description = """PlotSquared"""
|
||||
|
||||
//nukes the output dir
|
||||
task makePretty(type: Delete) {
|
||||
delete 'target'
|
||||
}
|
||||
|
||||
//makes clean nuke the output dir.
|
||||
clean{
|
||||
dependsOn makePretty
|
||||
}
|
||||
|
||||
subprojects {
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven'
|
||||
|
Loading…
Reference in New Issue
Block a user