-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle.kts
132 lines (112 loc) · 3.39 KB
/
build.gradle.kts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
plugins {
idea
java
id("com.gtnewhorizons.retrofuturagradle") version "1.3.35"
}
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
val neiCustomDiagramVersion: String by project
group = "com.github.dcysteine.neicustomdiagram"
version = neiCustomDiagramVersion
val minecraftVersion: String by project
minecraft {
mcVersion.set(minecraftVersion)
injectedTags.put("VERSION", project.version)
}
repositories {
maven("https://nexus.gtnewhorizons.com/repository/public/") {
name = "GTNH Maven"
}
maven("https://cursemaven.com") { name = "Curse Maven" }
/*
* This repo seems to be broken...
maven("https://maven.ic2.player.to") {
name = "IC2 Maven"
metadataSources {
mavenPom()
artifact()
}
content {
includeGroup("net.industrial-craft")
}
}
*/
maven("https://maven2.ic2.player.to") {
name = "IC2 Maven2"
metadataSources {
mavenPom()
artifact()
}
content {
includeGroup("net.industrial-craft")
}
}
//maven("https://gregtech.overminddl1.com/") { name = "GregTech" } // GT6
}
dependencies {
val autoValueVersion: String by project
compileOnly("com.google.auto.value:auto-value-annotations:$autoValueVersion")
annotationProcessor("com.google.auto.value:auto-value:$autoValueVersion")
val neiVersion: String by project
implementation("com.github.GTNewHorizons:NotEnoughItems:$neiVersion:dev") {}
val gregTech5Version: String by project
implementation("com.github.GTNewHorizons:GT5-Unofficial:$gregTech5Version:dev")
val bartworksVersion: String by project
implementation("com.github.GTNewHorizons:bartworks:$bartworksVersion:dev") {
isTransitive = false
}
val gtPlusPlusVersion: String by project
implementation("com.github.GTNewHorizons:GTplusplus:$gtPlusPlusVersion") {
isTransitive = false
}
val detravScannerVersion: String by project
implementation("com.github.GTNewHorizons:DetravScannerMod:$detravScannerVersion:dev") {
isTransitive = false
}
val gtnhCoreModVersion: String by project
implementation("com.github.GTNewHorizons:NewHorizonsCoreMod:$gtnhCoreModVersion:dev") {
isTransitive = false
}
/*
val gregTech6Version: String by project
implementation("com.gregoriust.gregtech:gregtech_$minecraftVersion:$gregTech6Version:dev")
*/
val enderStorageVersion: String by project
implementation("com.github.GTNewHorizons:EnderStorage:$enderStorageVersion:dev") {
isTransitive = false
}
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.withType<Jar> {
// Replace version in mcmod.info
filesMatching("mcmod.info") {
expand(
mapOf(
"version" to project.version,
"mcversion" to minecraftVersion,
)
)
}
archiveBaseName.set("NEICustomDiagram")
}
tasks.injectTags.configure {
outputClassName.set("${project.group}.Tags")
}
val sourcesJar by tasks.creating(Jar::class) {
from(sourceSets.main.get().allSource)
from("$projectDir/LICENSE.md")
archiveClassifier.set("sources")
}
artifacts {
archives(sourcesJar)
}