mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 23:34:49 +01:00
59 lines
1.2 KiB
Groovy
59 lines
1.2 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
|
id 'com.palantir.git-version' version '3.1.0'
|
|
}
|
|
|
|
group = 'mp.code'
|
|
version = versionDetails().lastTag.substring(1)
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs = ['src/']
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.github.adamheinrich:native-utils:master-SNAPSHOT'
|
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveClassifier.set('')
|
|
dependencies {
|
|
include(dependency('com.github.adamheinrich:native-utils:master-SNAPSHOT'))
|
|
}
|
|
}
|
|
|
|
def rustDir = projectDir.toPath()
|
|
.parent
|
|
.parent
|
|
.resolve('target')
|
|
.resolve('release')
|
|
.toFile()
|
|
processResources {
|
|
outputs.upToDateWhen { false } // no caching
|
|
from(rustDir) {
|
|
include('*.dll')
|
|
include('*.so')
|
|
include('*dylib')
|
|
into('natives/')
|
|
}
|
|
}
|
|
|
|
tasks.register('cargoBuild', Exec) {
|
|
workingDir '.'
|
|
commandLine 'cargo', 'build', '--release', '--features=java'
|
|
}
|
|
|
|
processResources.dependsOn cargoBuild
|
|
build.finalizedBy shadowJar
|