Skip to content

Commit

Permalink
release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaMatrix committed Nov 22, 2019
1 parent 05ce2c3 commit dd61dd2
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,14 @@ buildscript {
}
}

/*plugins {
id "java"
id "maven-publish"
}*/

dependencies {
/*for (Project prj : project.allprojects) {
if (!"PorkLib".equalsIgnoreCase(prj.name) && prj.parent.name.equalsIgnoreCase("PorkLib")) {
compile project(":" + prj.name)
}
}*/
//TODO
}

allprojects {
apply plugin: "java"
apply plugin: "maven-publish"

ext {
//general things
javaVersion = "1.8"
porklibVersion = "0.4.0-SNAPSHOT"
porklibVersion = "0.4.0"

//dependency things
apacheCommonsCompressVersion = "1.16.1"
Expand Down Expand Up @@ -146,3 +132,11 @@ allprojects {
}
}
}

dependencies {
for (Project prj : project.allprojects) {
if (!"PorkLib".equalsIgnoreCase(prj.name) && prj.parent.name.equalsIgnoreCase("PorkLib")) {
compile project(":" + prj.name)
}
}
}

0 comments on commit dd61dd2

Please sign in to comment.