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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org