You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by GitBox <gi...@apache.org> on 2020/09/30 19:37:55 UTC

[GitHub] [lucene-solr] dweiss commented on a change in pull request #1929: LUCENE-9548: Apache repository publishing

dweiss commented on a change in pull request #1929:
URL: https://github.com/apache/lucene-solr/pull/1929#discussion_r497754262



##########
File path: gradle/maven/defaults-maven.gradle
##########
@@ -102,29 +123,74 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj ->
     gradle.projectsEvaluated {
       publishing {
         def configurePom = {
-          name = "Apache Solr/Lucene (${project.name})"
+          if (project.path.startsWith(":solr")) {
+            name = "Apache Solr (module: ${project.name})"
+            description = name
+            url = 'https://lucene.apache.org/solr/'
+          } else {
+            name = "Apache Lucene (module: ${project.name})"
+            description = name
+            url = 'https://lucene.apache.org/'
+          }
+
           licenses {
             license {
               name = 'Apache 2'
               url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
             }
           }
-        }
 
-        publications {
-          // JARS and sources, no javadocs (for local inspection only).
-          jars(MavenPublication) {
-            from components.java
-            groupId = project.group
-            artifactId = project.archivesBaseName
+          inceptionYear = "2000"
 
-            artifact sourcesJar
+          issueManagement {
+            system = "JIRA"
+            url = "https://issues.apache.org/jira/browse/LUCENE"

Review comment:
       All of it should be project-dependent, really... But yes -- feel free to commit a patch.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@lucene.apache.org
For additional commands, e-mail: issues-help@lucene.apache.org