2024-08-07 10:22:01 +02:00
|
|
|
plugins {
|
2024-08-08 00:29:54 +02:00
|
|
|
id 'java-library'
|
2024-08-07 10:22:01 +02:00
|
|
|
id 'maven-publish'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
|
|
|
id 'com.palantir.git-version' version '3.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'mp.code'
|
2024-08-08 00:29:54 +02:00
|
|
|
version = versionDetails().lastTag.substring(1)
|
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
2024-08-07 10:22:01 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs = ['src/']
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.adamheinrich:native-utils:master-SNAPSHOT'
|
2024-09-17 17:37:22 +02:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
2024-08-07 10:22:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveClassifier.set('')
|
|
|
|
dependencies {
|
|
|
|
include(dependency('com.github.adamheinrich:native-utils:master-SNAPSHOT'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def rustDir = projectDir.toPath()
|
2024-08-08 00:29:54 +02:00
|
|
|
.parent
|
2024-08-07 10:22:01 +02:00
|
|
|
.parent
|
|
|
|
.resolve('target')
|
|
|
|
.resolve('release')
|
|
|
|
.toFile()
|
|
|
|
processResources {
|
2024-09-15 20:38:47 +02:00
|
|
|
outputs.upToDateWhen { false } // no caching
|
2024-08-07 10:22:01 +02:00
|
|
|
from(rustDir) {
|
|
|
|
include('*.dll')
|
|
|
|
include('*.so')
|
2024-09-09 20:59:07 +02:00
|
|
|
include('*dylib')
|
2024-08-07 10:22:01 +02:00
|
|
|
into('natives/')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register('cargoBuild', Exec) {
|
|
|
|
workingDir '.'
|
|
|
|
commandLine 'cargo', 'build', '--release', '--features=java'
|
|
|
|
}
|
|
|
|
|
2024-09-15 20:38:47 +02:00
|
|
|
processResources.dependsOn cargoBuild
|
2024-09-09 16:06:05 +02:00
|
|
|
build.finalizedBy shadowJar
|