Skip to content

Commit

Permalink
Updating gradle and removing unneeded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lipian committed Oct 13, 2019
1 parent 5afb69e commit 9e6b867
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 3 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ repositories {

// Common dependencies
dependencies {
compile 'com.google.guava:guava:21.0'
compile 'org.spongepowered:spongeapi:7.0.0'
compile 'org.spongepowered:spongeapi:7.1.0'

testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.9.5'
}

// Source compiler configuration
Expand All @@ -62,10 +60,6 @@ jar {
javadoc {
options.encoding = 'UTF-8'
options.charSet = 'UTF-8'
options.links(
'http://docs.guava-libraries.googlecode.com/git-history/v18.0/javadoc/',
'https://docs.oracle.com/javase/8/docs/api/'
)
// Disable the crazy super-strict doclint tool in Java 8
options.addStringOption('Xdoclint:none', '-quiet')
}
Expand Down Expand Up @@ -106,6 +100,6 @@ license {
}

// Gradle version used for generating the Gradle wrapper
task wrapper(type: Wrapper) {
gradleVersion = '2.10'
wrapper {
gradleVersion = '5.6'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.thevoxelbox.voxelsniper.util;

public class BlockTraitHelper {
}

0 comments on commit 9e6b867

Please sign in to comment.