aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorCow <cow@volloeko.de>2020-07-05 03:49:03 +0200
committerCow <cow@volloeko.de>2020-07-05 03:49:03 +0200
commitedaca1fd41a612c71c526ceb20b89c5dec2d81b3 (patch)
tree0f7f9e0709f50ef239e037ce94152d2835e1245a /build.gradle
parenta54f518faf6d79be4bfd5ec218d251734bb123f1 (diff)
downloadCowlection-edaca1fd41a612c71c526ceb20b89c5dec2d81b3.tar.gz
Cowlection-edaca1fd41a612c71c526ceb20b89c5dec2d81b3.tar.bz2
Cowlection-edaca1fd41a612c71c526ceb20b89c5dec2d81b3.zip
Bumped version to 1.8.9-0.6.0
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle9
1 files changed, 4 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index cbd91b2..c9883f2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,7 @@ minecraft {
replace "@VERSION@": project.version, "@MODNAME@": project.mod_name, "@MODID@": mod_id, "@PACKAGE@": project.group_package, "@GITURL@": project.git_url
replaceIn "${mod_name_no_spaces}.java"
-
+
// the mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD snapshot are built nightly.
// stable_# stables are built at the discretion of the MCP team.
@@ -50,7 +50,7 @@ dependencies {
// or you may define them like so..
//compile "some.group:artifact:version:classifier"
//compile "some.group:artifact:version"
-
+
// real examples
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
@@ -66,7 +66,6 @@ dependencies {
// for more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
-
}
processResources {
@@ -82,9 +81,9 @@ processResources {
include 'mcmod.info'
// replace version, mcversion, modname, modid and giturl
- expand 'version':project.version, 'mcversion':project.minecraft.version, 'modname':project.mod_name, 'modid':mod_id, 'giturl':project.git_url
+ expand 'version': project.version, 'mcversion': project.minecraft.version, 'modname': project.mod_name, 'modid': mod_id, 'giturl': project.git_url
}
-
+
// copy everything else, that's not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'