mirror of
https://github.com/topjohnwu/lz4-java.git
synced 2024-11-23 04:09:41 +00:00
24 lines
436 B
Groovy
24 lines
436 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'maven'
|
|
|
|
group = 'com.github.topjohnwu'
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
}
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
archiveClassifier.set('sources')
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
}
|
|
|