Skip to content

Commit

Permalink
Remove license plugin, it's improperly configured, failing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
Johni0702 committed Mar 30, 2020
1 parent d1d9aaa commit b64de9c
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ buildscript {
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.1"
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
}
}

Expand All @@ -21,7 +20,6 @@ plugins {
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'license'

group = 'net.minecraftforge.gradle'
version = '2.3-SNAPSHOT'
Expand Down Expand Up @@ -165,27 +163,6 @@ test {
exclude "**/ExtensionMcpMappingTest*"
}

license {
ext {
description = 'A Gradle plugin for the creation of Minecraft mods and MinecraftForge plugins.'
year = '2013-' + Calendar.getInstance().get(Calendar.YEAR)
fullname = 'Minecraft Forge'
}
header rootProject.file('HEADER')
include '**net/minecraftforge/gradle/**/*.java'
excludes ([
'**net/minecraftforge/gradle/util/ZipFileTree.java',
'**net/minecraftforge/gradle/util/json/version/*',
'**net/minecraftforge/gradle/util/patching/Base64.java',
'**net/minecraftforge/gradle/util/patching/ContextualPatch.java'
])
ignoreFailures false
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
}
}

pluginBundle {
website = 'http://www.gradle.org/'
vcsUrl = 'https://github.com/MinecraftForge/ForgeGradle'
Expand Down

0 comments on commit b64de9c

Please sign in to comment.