Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish to JCentral & Maven Central #105

Closed
remkop opened this issue Apr 18, 2017 · 1 comment
Closed

Publish to JCentral & Maven Central #105

remkop opened this issue Apr 18, 2017 · 1 comment
Milestone

Comments

@remkop
Copy link
Owner

remkop commented Apr 18, 2017

No description provided.

@remkop remkop modified the milestones: 0.9.2, 0.9.3 Apr 18, 2017
remkop added a commit that referenced this issue Apr 23, 2017
@remkop remkop modified the milestones: 0.9.3, 0.9.4 Apr 23, 2017
@remkop remkop closed this as completed in fad2128 Apr 24, 2017
@remkop remkop reopened this Apr 27, 2017
@remkop
Copy link
Owner Author

remkop commented Apr 27, 2017

Additional Maven Requirements

https://bintray.com/remkop/picocli/picocli/0.9.3#central

Index: build.gradle
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- build.gradle	(revision )
+++ build.gradle	(revision )
@@ -120,20 +120,26 @@
             artifact javadocJar
             pom.withXml {
                 def root = asNode()
-                root.appendNode('name', 'picocli - a mighty tiny Command Line Interface')
-                root.appendNode('description', description)
-                root.appendNode('url', 'http://picocli.info')
+                root.appendNode('packaging',     'jar')
+                root.appendNode('name',          'picocli - a mighty tiny Command Line Interface')
+                root.appendNode('description',   description)
+                root.appendNode('url',           'http://picocli.info')
                 root.appendNode('inceptionYear', '2017')
 
                 def license = root.appendNode('licenses').appendNode('license')
-                license.appendNode('name', 'The Apache Software License, version 2.0')
-                license.appendNode('url', 'http://www.apache.org/licenses/LICENSE-2.0.txt')
+                license.appendNode('name',         'The Apache Software License, version 2.0')
+                license.appendNode('url',          'http://www.apache.org/licenses/LICENSE-2.0.txt')
                 license.appendNode('distribution', 'repo')
 
                 def developer = root.appendNode('developers').appendNode('developer')
-                developer.appendNode('id', 'rpopma')
-                developer.appendNode('name', 'Remko Popma')
+                developer.appendNode('id',    'rpopma')
+                developer.appendNode('name',  'Remko Popma')
                 developer.appendNode('email', 'rpopma@apache.org')
+
+                def scm = root.appendNode('scm')
+                scm.appendNode('connection',          'scm:git:https://github.com/remkop/picocli.git')
+                scm.appendNode('developerConnection', 'scm:git:ssh://github.com:remkop/picocli.git')
+                scm.appendNode('url',                 'https://github.com/remkop/picocli/tree/master')
             }
         }
     }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant