Skip to content

Commit

Permalink
Downgrade gradle wrapper, IntelliJ has some issues with mutli-project…
Browse files Browse the repository at this point in the history
…s in the latest version.
  • Loading branch information
Cybermaxke committed Oct 21, 2017
1 parent ed0ca65 commit 61e5dd6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
task wrapper(type: Wrapper) {
gradleVersion = '4.2'
gradleVersion = '3.5'
}
4 changes: 0 additions & 4 deletions editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ ext.baseName = 'nbt-editor'

apply from: rootProject.file('gradle/build-base.gradle')

repositories {
mavenCentral()
}

dependencies {
compile project(':lantern-nbt')
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/build-base.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jar {
}

processResources {
from 'LICENSE.txt'
from rootProject.file('LICENSE.txt')
}

task sourceJar(type: Jar) {
classifier = 'sources'
from 'LICENSE.txt'
from rootProject.file('LICENSE.txt')
from sourceSets.main.allSource
}
assemble.dependsOn sourceJar
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Sat Oct 21 20:20:17 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip

0 comments on commit 61e5dd6

Please sign in to comment.