bintray publication done
This commit is contained in:
parent
5591dce07a
commit
506c8c615e
|
@ -2,24 +2,24 @@
|
|||
// publishing information
|
||||
// -----------------------------------------------------------------------------
|
||||
ext.publishing.artifactId = project.name.toLowerCase()
|
||||
ext.publishing.groupId = 'eu.mihosoft.jcapture'
|
||||
ext.publishing.versionId = '0.1.2'
|
||||
ext.publishing.groupId = 'eu.mihosoft.freerouting'
|
||||
ext.publishing.versionId = '1.3.0'
|
||||
|
||||
ext.publishing.developerName = 'Michael Hoffer'
|
||||
ext.publishing.developerAlias = 'miho'
|
||||
ext.publishing.developerEmail = 'info@michaelhoffer.de'
|
||||
ext.publishing.inceptionYear = '2017'
|
||||
|
||||
ext.publishing.bintray.repo = 'JCapture'
|
||||
ext.publishing.bintray.repo = 'Freerouting'
|
||||
ext.publishing.bintray.userOrg = 'miho'
|
||||
ext.publishing.bintray.name = project.name
|
||||
|
||||
ext.publishing.desc = 'Simple API for capturing video devices'
|
||||
ext.publishing.license = 'Apache-2.0'
|
||||
ext.publishing.licenseUrl = 'https://github.com/miho/JCapture/blob/master/LICENSE.txt'
|
||||
ext.publishing.labels = ['video', 'webcam', 'capture']
|
||||
ext.publishing.websiteUrl = 'https://github.com/miho/JCapture'
|
||||
ext.publishing.issueTrackerUrl = 'https://github.com/miho/JCapture/issues'
|
||||
ext.publishing.vcsUrl = 'https://github.com/miho/JCapture.git'
|
||||
ext.publishing.desc = 'Advanced PCB Autorouter'
|
||||
ext.publishing.license = 'GPL-3.0'
|
||||
ext.publishing.licenseUrl = 'https://github.com/miho/freerouting/blob/master/LICENSE.txt'
|
||||
ext.publishing.labels = ['PCB', 'Autorouter', 'KiCad', 'EAGLE']
|
||||
ext.publishing.websiteUrl = 'https://github.com/miho/freerouting'
|
||||
ext.publishing.issueTrackerUrl = 'https://github.com/miho/freerouting/issues'
|
||||
ext.publishing.vcsUrl = 'https://github.com/miho/freerouting.git'
|
||||
|
||||
ext.publishing.pomName = ext.publishing.artifactId
|
||||
|
|
|
@ -28,6 +28,7 @@ artifacts {
|
|||
archives javadocJar
|
||||
archives sourcesJar
|
||||
}
|
||||
|
||||
Date buildTimeAndDate = new Date()
|
||||
ext {
|
||||
buildDate = new java.text.SimpleDateFormat('yyyy-MM-dd').format(buildTimeAndDate)
|
||||
|
@ -85,6 +86,7 @@ publishing {
|
|||
from components.java
|
||||
artifact sourcesJar
|
||||
artifact javadocJar
|
||||
artifact executableJar
|
||||
|
||||
pom.withXml {
|
||||
def root = asNode()
|
||||
|
|
Loading…
Reference in New Issue