mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 08:30:35 +00:00
102 lines
3.1 KiB
Groovy
102 lines
3.1 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
}
|
|
|
|
ext.isSnapshotVersion = version.endsWith("SNAPSHOT")
|
|
ext.isReleaseVersion = !ext.isSnapshotVersion
|
|
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "net.sf.applecommander:ShrinkItArchive:$shkVersion"
|
|
implementation "net.sf.applecommander:acdasm:$acdasmVersion"
|
|
implementation "net.sf.applecommander:bastools-api:$btVersion"
|
|
implementation "org.apache.commons:commons-csv:$commonsCsvVersion"
|
|
implementation "com.google.code.gson:gson:$gsonVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|
|
|
|
tasks.withType(Jar) {
|
|
archiveBaseName = 'AppleCommander'
|
|
archiveAppendix = 'api'
|
|
manifest {
|
|
attributes 'Implementation-Title': 'AppleCommander',
|
|
'Implementation-Version': archiveVersion
|
|
}
|
|
from('../../LICENSE')
|
|
}
|
|
|
|
javadoc {
|
|
title = "AppleCommander ${version}"
|
|
source = sourceSets.main.allJava
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
}
|
|
|
|
task javadocJar(type: Jar) {
|
|
classifier = 'javadoc'
|
|
from javadoc
|
|
}
|
|
|
|
task sourcesJar(type: Jar) {
|
|
classifier = 'sources'
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.java
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
pom {
|
|
groupId = "net.sf.applecommander"
|
|
artifactId = "AppleCommander"
|
|
name = 'AppleCommander'
|
|
description = 'AppleCommander is a general utility for Apple II disk images.'
|
|
url = 'https://applecommander.github.io/'
|
|
licenses {
|
|
license {
|
|
name = 'The GNU General Public License (GPL) Version 2, June 1991'
|
|
url = 'https://www.gnu.org/licenses/gpl-2.0.html'
|
|
}
|
|
}
|
|
developers {
|
|
developer {
|
|
id = 'robgreene'
|
|
name = 'Rob Greene'
|
|
email = 'robgreene@gmail.com'
|
|
}
|
|
}
|
|
scm {
|
|
connection = 'scm:git:https://github.com/AppleCommander/AppleCommander.git'
|
|
developerConnection = 'scm:git:git@github.com:AppleCommander/AppleCommander.git'
|
|
url = 'https://github.com/AppleCommander/AppleCommander'
|
|
}
|
|
}
|
|
repositories {
|
|
maven {
|
|
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2"
|
|
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
url = isSnapshotVersion ? snapshotsRepoUrl : releasesRepoUrl
|
|
credentials {
|
|
username = findProperty('ossrhUsername')
|
|
password = findProperty('ossrhPassword')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
signing {
|
|
sign publishing.publications.mavenJava
|
|
}
|