|
24 | 24 | configure(rootProject) { |
25 | 25 | ext { |
26 | 26 | published = [ |
27 | | - ":lucene:analysis:common", |
28 | | - ":lucene:analysis:icu", |
29 | | - ":lucene:analysis:kuromoji", |
30 | | - ":lucene:analysis:morfologik", |
31 | | - ":lucene:analysis:nori", |
32 | | - ":lucene:analysis:opennlp", |
33 | | - ":lucene:analysis:phonetic", |
34 | | - ":lucene:analysis:smartcn", |
35 | | - ":lucene:analysis:stempel", |
36 | | - ":lucene:backward-codecs", |
37 | | - ":lucene:benchmark", |
38 | | - ":lucene:classification", |
39 | | - ":lucene:codecs", |
40 | | - ":lucene:core", |
41 | | - ":lucene:demo", |
42 | | - ":lucene:expressions", |
43 | | - ":lucene:facet", |
44 | | - ":lucene:grouping", |
45 | | - ":lucene:highlighter", |
46 | | - ":lucene:join", |
47 | | - ":lucene:luke", |
48 | | - ":lucene:memory", |
49 | | - ":lucene:misc", |
50 | | - ":lucene:monitor", |
51 | | - ":lucene:queries", |
52 | | - ":lucene:queryparser", |
53 | | - ":lucene:replicator", |
54 | | - ":lucene:sandbox", |
55 | | - ":lucene:spatial-extras", |
56 | | - ":lucene:spatial3d", |
57 | | - ":lucene:suggest", |
58 | | - ":lucene:test-framework", |
59 | | - |
60 | 27 | ":solr:core", |
61 | 28 | ":solr:solrj", |
62 | 29 | ":solr:contrib:analysis-extras", |
@@ -123,121 +90,57 @@ configure(subprojects.findAll { it.path in rootProject.published }) { prj -> |
123 | 90 | // in gradle or just complex relationships between lazy collection hooks. |
124 | 91 | gradle.projectsEvaluated { |
125 | 92 | publishing { |
126 | | - def configurePom; |
127 | | - if (project.path.startsWith(":lucene")) { |
128 | | - configurePom = { |
129 | | - name = "Apache Lucene (module: ${project.name})" |
130 | | - description = name |
131 | | - url = 'https://lucene.apache.org/' |
132 | | - |
133 | | - licenses { |
134 | | - license { |
135 | | - name = 'Apache 2' |
136 | | - url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' |
137 | | - } |
138 | | - } |
139 | | - |
140 | | - inceptionYear = "2000" |
141 | | - |
142 | | - issueManagement { |
143 | | - system = "JIRA" |
144 | | - url = "https://issues.apache.org/jira/browse/LUCENE" |
145 | | - } |
146 | | - |
147 | | - ciManagement { |
148 | | - system = "Jenkins" |
149 | | - url = "https://builds.apache.org/job/Lucene/" |
| 93 | + def configurePom = { |
| 94 | + name = "Apache Solr (module: ${project.name})" |
| 95 | + description = name |
| 96 | + url = 'https://solr.apache.org/' |
| 97 | + |
| 98 | + licenses { |
| 99 | + license { |
| 100 | + name = 'Apache 2' |
| 101 | + url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' |
150 | 102 | } |
| 103 | + } |
151 | 104 |
|
152 | | - mailingLists { |
153 | | - mailingList { |
154 | | - name = "General List" |
155 | | - |
156 | | - |
157 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-general/" |
158 | | - } |
159 | | - |
160 | | - mailingList { |
161 | | - name = "Java User List" |
162 | | - |
163 | | - |
164 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-java-user/" |
165 | | - } |
166 | | - |
167 | | - mailingList { |
168 | | - name = "Java Developer List" |
169 | | - |
170 | | - |
171 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-dev/" |
172 | | - } |
| 105 | + inceptionYear = "2006" |
173 | 106 |
|
174 | | - mailingList { |
175 | | - name = "Java Commits List" |
176 | | - |
177 | | - |
178 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-java-commits/" |
179 | | - } |
180 | | - } |
181 | | - |
182 | | - scm { |
183 | | - connection = 'scm:git:https://gitbox.apache.org/repos/asf/lucene-solr.git' |
184 | | - developerConnection = 'scm:git:https://gitbox.apache.org/repos/asf/lucene-solr.git' |
185 | | - url = 'https://gitbox.apache.org/repos/asf?p=lucene-solr.git' |
186 | | - } |
| 107 | + issueManagement { |
| 108 | + system = "JIRA" |
| 109 | + url = "https://issues.apache.org/jira/browse/SOLR" |
187 | 110 | } |
188 | | - } else { |
189 | | - configurePom = { |
190 | | - name = "Apache Solr (module: ${project.name})" |
191 | | - description = name |
192 | | - url = 'https://lucene.apache.org/solr/' |
193 | 111 |
|
194 | | - licenses { |
195 | | - license { |
196 | | - name = 'Apache 2' |
197 | | - url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' |
198 | | - } |
199 | | - } |
200 | | - |
201 | | - inceptionYear = "2006" |
| 112 | + ciManagement { |
| 113 | + system = "Jenkins" |
| 114 | + url = "https://builds.apache.org/job/Solr/" |
| 115 | + } |
202 | 116 |
|
203 | | - issueManagement { |
204 | | - system = "JIRA" |
205 | | - url = "https://issues.apache.org/jira/browse/SOLR" |
| 117 | + mailingLists { |
| 118 | + mailingList { |
| 119 | + name = "Solr User List" |
| 120 | + |
| 121 | + |
| 122 | + archive = "https://lists.apache.org/[email protected]" |
206 | 123 | } |
207 | 124 |
|
208 | | - ciManagement { |
209 | | - system = "Jenkins" |
210 | | - url = "https://builds.apache.org/job/Lucene/" |
| 125 | + mailingList { |
| 126 | + name = "Solr Developer List" |
| 127 | + |
| 128 | + |
| 129 | + archive = "https://lists.apache.org/[email protected]" |
211 | 130 | } |
212 | 131 |
|
213 | | - mailingLists { |
214 | | - mailingList { |
215 | | - name = "Solr User List" |
216 | | - |
217 | | - |
218 | | - archive = "https://mail-archives.apache.org/mod_mbox/solr-user/" |
219 | | - } |
220 | | - |
221 | | - mailingList { |
222 | | - name = "Java Developer List" |
223 | | - |
224 | | - |
225 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-dev/" |
226 | | - } |
227 | | - |
228 | | - mailingList { |
229 | | - name = "Java Commits List" |
230 | | - |
231 | | - |
232 | | - archive = "https://mail-archives.apache.org/mod_mbox/lucene-java-commits/" |
233 | | - } |
| 132 | + mailingList { |
| 133 | + name = "Solr Commits List" |
| 134 | + |
| 135 | + |
| 136 | + archive = "https://lists.apache.org/[email protected]" |
234 | 137 | } |
| 138 | + } |
235 | 139 |
|
236 | | - scm { |
237 | | - connection = 'scm:git:https://gitbox.apache.org/repos/asf/lucene-solr.git' |
238 | | - developerConnection = 'scm:git:https://gitbox.apache.org/repos/asf/lucene-solr.git' |
239 | | - url = 'https://gitbox.apache.org/repos/asf?p=lucene-solr.git' |
240 | | - } |
| 140 | + scm { |
| 141 | + connection = 'scm:git:https://gitbox.apache.org/repos/asf/solr.git' |
| 142 | + developerConnection = 'scm:git:https://gitbox.apache.org/repos/asf/solr.git' |
| 143 | + url = 'https://gitbox.apache.org/repos/asf?p=solr.git' |
241 | 144 | } |
242 | 145 | } |
243 | 146 |
|
|
0 commit comments