madrob commented on a change in pull request #1929: URL: https://github.com/apache/lucene-solr/pull/1929#discussion_r497720643
########## 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: This should be split by project? ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org