mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
ci(java): os classifier
This commit is contained in:
parent
a26f57d249
commit
3e68897f5f
1 changed files with 53 additions and 50 deletions
101
dist/java/build.gradle
vendored
101
dist/java/build.gradle
vendored
|
@ -1,8 +1,10 @@
|
||||||
|
import com.vanniktech.maven.publish.SonatypeHost
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id 'maven-publish'
|
|
||||||
id "com.vanniktech.maven.publish" version "0.29.0"
|
id "com.vanniktech.maven.publish" version "0.29.0"
|
||||||
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
||||||
|
id 'com.google.osdetector' version '1.7.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'mp.code'
|
group = 'mp.code'
|
||||||
|
@ -10,9 +12,57 @@ version = '0.0.1'
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
withSourcesJar()
|
||||||
|
withJavadocJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
import com.vanniktech.maven.publish.SonatypeHost
|
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 {
|
||||||
|
jar.archiveClassifier = archiveClassifier = osdetector.classifier
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
mavenPublishing {
|
mavenPublishing {
|
||||||
//publishToMavenCentral(SonatypeHost.S01) // for snapshots
|
//publishToMavenCentral(SonatypeHost.S01) // for snapshots
|
||||||
|
@ -48,50 +98,3 @@ mavenPublishing {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
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
|
|
||||||
|
|
Loading…
Reference in a new issue