Some fixes
This commit is contained in:
parent
fa70c16dbd
commit
481a60fc1a
2 changed files with 16 additions and 4 deletions
|
@ -4,12 +4,20 @@ plugins {
|
|||
}
|
||||
|
||||
group = "org.thundernetwork"
|
||||
version = "1.0"
|
||||
version = "1.0.0"
|
||||
|
||||
repositories {
|
||||
maven("https://repository.thundernetwork.org/repository/maven-public")
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// testImplementation(kotlin("test"))
|
||||
}
|
||||
|
@ -17,9 +25,13 @@ dependencies {
|
|||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
//tasks.jar {
|
||||
// from(sourceSets.main) // Include all source code in the JAR
|
||||
// manifest {
|
||||
// attributes(mapOf("Main-Class" to "org.thundernetwork.sitemap"))
|
||||
// }
|
||||
//}
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
|
|
Loading…
Reference in a new issue