-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
47 lines (40 loc) · 1.37 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Gradle plugin project to get you started.
* For more details take a look at the Writing Custom Plugins chapter in the Gradle
* User Manual available at https://docs.gradle.org/8.0.1/userguide/custom_plugins.html
*/
plugins {
// Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.palantir.git-version' version '3.0.0'
id 'io.freefair.lombok' version '8.0.1'
}
version = gitVersion()
group = 'io.github.legacymoddingmc.mappinggenerator'
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
maven {
// GTNH RetroFuturaGradle and ASM Fork
name "GTNH Maven"
url "http://jenkins.usrv.eu:8081/nexus/content/groups/public/"
allowInsecureProtocol = true
}
}
dependencies {
implementation 'com.gtnewhorizons:retrofuturagradle:1.2.7'
// We depend on the compiler API
implementation files("${System.properties['java.home']}/../lib/tools.jar")
}
gradlePlugin {
// Define the plugin
plugins {
greeting {
id = 'io.github.legacymoddingmc.mappinggenerator'
implementationClass = 'io.github.legacymoddingmc.mappinggenerator.MappingGeneratorPlugin'
}
}
}