mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-21 14:55:17 +01:00
Removed unneeded gradle
This commit is contained in:
parent
508c85eda8
commit
3362f4d772
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -1,6 +1,5 @@
|
||||
plugins {
|
||||
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
||||
id 'com.willfp.ecoenchants.java-conventions'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
@ -37,7 +36,7 @@ shadowJar {
|
||||
relocate('org.jetbrains', 'com.willfp.ecoenchants.shaded.jetbrains')
|
||||
relocate('org.intellij', 'com.willfp.ecoenchants.shaded.intellij')
|
||||
relocate('org.apache.maven', 'com.willfp.ecoenchants.shaded.maven')
|
||||
archiveName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
|
||||
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
|
||||
}
|
||||
|
||||
processResources {
|
||||
@ -47,7 +46,7 @@ processResources {
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveName = findProperty("plugin-name") + " v" + findProperty("version") + " " + "unshaded" + ".jar"
|
||||
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + " " + "unshaded" + ".jar"
|
||||
}
|
||||
|
||||
compileJava.dependsOn clean
|
||||
|
113
build.gradle
Normal file
113
build.gradle
Normal file
@ -0,0 +1,113 @@
|
||||
plugins {
|
||||
id 'java-library'
|
||||
id 'maven-publish'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
mavenLocal()
|
||||
maven {
|
||||
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.codemc.org/repository/maven-public'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://oss.sonatype.org/content/groups/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://maven.enginehub.org/repo/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://ci.ender.zone/plugin/repository/project/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://ci.ender.zone/plugin/repository/everything/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.md-5.net/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.janmm14.de/repository/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.dmulloy2.net/nexus/repository/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://papermc.io/repo/repository/maven-public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.maven.apache.org/maven2/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.dustplanet.de/artifactory/ext-release-local/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://maven.seyfahni.de/repository/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://libraries.minecraft.net/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.spongepowered.org/maven/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://org.kitteh.pastegg'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'http://repo.mikeprimm.com/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'http://maven.sk89q.com/repo/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://github.com/factions-site/repo/raw/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group = 'com.willfp.ecoenchants'
|
||||
archivesBaseName = project.name
|
||||
version = project.version
|
||||
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
from(components.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
/*
|
||||
* This file was generated by the Gradle 'init' task.
|
||||
*/
|
||||
|
||||
plugins {
|
||||
id 'java-library'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
mavenLocal()
|
||||
maven {
|
||||
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.codemc.org/repository/maven-public'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://oss.sonatype.org/content/groups/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://maven.enginehub.org/repo/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://ci.ender.zone/plugin/repository/project/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://ci.ender.zone/plugin/repository/everything/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.md-5.net/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.janmm14.de/repository/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.dmulloy2.net/nexus/repository/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://papermc.io/repo/repository/maven-public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.maven.apache.org/maven2/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.dustplanet.de/artifactory/ext-release-local/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://maven.seyfahni.de/repository/snapshots/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://libraries.minecraft.net/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.spongepowered.org/maven/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://org.kitteh.pastegg'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'http://repo.mikeprimm.com/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'http://maven.sk89q.com/repo/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://github.com/factions-site/repo/raw/public/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
|
||||
}
|
||||
}
|
||||
|
||||
group = 'com.willfp.ecoenchants'
|
||||
archivesBaseName = project.name
|
||||
version = project.version
|
||||
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
from(components.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
Loading…
Reference in New Issue
Block a user