Skip to content

Commit

Permalink
Update Gradle wrapper to 2.14.1
Browse files Browse the repository at this point in the history
- Update Gradle plugin publish plugin
- Update licenser
- Remove generate anonymous inner class mapping task. Fixes #5
  • Loading branch information
stephan-gh committed Aug 24, 2016
1 parent 1e85add commit f654b08
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 189 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {
id 'idea'

id 'maven'
id 'com.gradle.plugin-publish' version '0.9.4'
id 'com.gradle.plugin-publish' version '0.9.5'

id 'net.minecrell.licenser' version '0.1.5'
id 'net.minecrell.licenser' version '0.2.1'
}

defaultTasks 'clean', 'licenseFormat', 'build'
Expand Down Expand Up @@ -135,5 +135,5 @@ uploadArchives {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.13'
gradleVersion = '2.14.1'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 09 17:44:39 CEST 2016
#Wed Aug 24 17:34:53 CEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ package org.spongepowered.gradle

import org.gradle.api.Plugin
import org.gradle.api.Project
import org.spongepowered.gradle.task.TaskGenerateAnonInnerClassMappings
import org.spongepowered.gradle.task.TaskSortAccessTransformers
import org.spongepowered.gradle.task.TaskSortClassMembers

Expand All @@ -44,9 +43,6 @@ class SpongeGradlePlugin implements Plugin<Project> {
group = "Sponge"
description = "Sort entries in AccessTransformer configurations"
}

// TODO: There is probably a better way to prevent the import in the build.gradle
project.ext.GenerateAnonInnerClassMappings = TaskGenerateAnonInnerClassMappings.class
}

}

This file was deleted.

0 comments on commit f654b08

Please sign in to comment.