-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
57 lines (47 loc) · 1.3 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.6.10"
id("org.cadixdev.licenser") version "0.6.1"
`maven-publish`
}
group = "io.github.orioncraftmc"
version = "0.0.3-SNAPSHOT"
repositories {
mavenCentral()
maven("https://raw.githubusercontent.com/NickAcPT/LightCraftMaven/main/")
}
dependencies {
/* Colour Stuff */
api("com.github.ajalt.colormath:colormath:3.2.0")
/* Meditate Layout */
api("io.github.orioncraftmc:meditate-layout:1.0.1")
}
configure<org.cadixdev.gradle.licenser.LicenseExtension> {
header(rootProject.file("LICENSE"))
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
}
val sourcesJar by tasks.creating(Jar::class) {
archiveClassifier.set("sources")
from(sourceSets.main.get().allSource)
}
publishing {
repositories {
val lightCraftRepoDir = project.findProperty("lightcraft.repo.location")
if (lightCraftRepoDir != null) {
maven {
name = "LightCraftRepo"
url = File(lightCraftRepoDir.toString()).toURI()
}
}
}
publications {
create<MavenPublication>("maven") {
from(components["java"])
artifact(sourcesJar)
}
}
}