mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
3e7fbe89ac
The changes have been squashed as the commit history and messages were not very carefully crafted. There isn't that much value in preserving random commit messages. Also due to diverging branches, rebasing or merging it was difficult.
38 lines
No EOL
813 B
Groovy
38 lines
No EOL
813 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/gradle_scripts/java.gradle"
|
|
apply from: "$rootDir/gradle/gradle_scripts/junit.gradle"
|
|
|
|
version = rootProject.versionString
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'xpipe-api'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation project(':api')
|
|
}
|
|
|
|
dependencies {
|
|
api project(':core')
|
|
implementation project(':beacon')
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.16.1"
|
|
}
|
|
|
|
configurations {
|
|
testImplementation.extendsFrom(dep)
|
|
}
|
|
|
|
task dist(type: Copy) {
|
|
from jar.archiveFile
|
|
into "${project(':dist').buildDir}/dist/libraries"
|
|
}
|
|
|
|
apply from: 'publish.gradle'
|
|
apply from: "$rootDir/gradle/gradle_scripts/publish-base.gradle" |