|
17 | 17 | </license>
|
18 | 18 | </licenses>
|
19 | 19 |
|
20 |
| - <!-- Developer entries are provided for only first six contributors on the Github stats page for to the 2.x branch. |
21 |
| - For other contributors, see https://github.com/opentripplanner/OpenTripPlanner/graphs/contributors --> |
22 |
| - <developers> |
23 |
| - <developer> |
24 |
| - <name>Andrew Byrd</name> |
25 |
| - |
26 |
| - <organization>Conveyal</organization> |
27 |
| - <organizationUrl>http://conveyal.com/</organizationUrl> |
28 |
| - </developer> |
29 |
| - <developer> |
30 |
| - <name>Matt Conway</name> |
31 |
| - |
32 |
| - <organization>Conveyal</organization> |
33 |
| - <organizationUrl>http://conveyal.com/</organizationUrl> |
34 |
| - </developer> |
35 |
| - <developer> |
36 |
| - <name>Thomas Gran</name> |
37 |
| - |
38 |
| - <organization>Ruter and Entur</organization> |
39 |
| - <organizationUrl>http://entur.org/</organizationUrl> |
40 |
| - </developer> |
41 |
| - <developer> |
42 |
| - <name>Laurent Grégoire</name> |
43 |
| - |
44 |
| - <organization>Mecatran</organization> |
45 |
| - <organizationUrl>http://www.mecatran.com/</organizationUrl> |
46 |
| - </developer> |
47 |
| - <developer> |
48 |
| - <name>Gard Mellemstrand</name> |
49 |
| - |
50 |
| - <organization>Entur</organization> |
51 |
| - <organizationUrl>http://entur.org/</organizationUrl> |
52 |
| - </developer> |
53 |
| - <developer> |
54 |
| - <name>David Novalis Turner</name> |
55 |
| - |
56 |
| - <organization>Ex-OpenPlans</organization> |
57 |
| - <organizationUrl>http://openplans.org/</organizationUrl> |
58 |
| - </developer> |
59 |
| - </developers> |
60 |
| - |
61 | 20 | <scm>
|
62 |
| - <connection>scm:git:http://github.com/opentripplanner/OpenTripPlanner.git</connection> |
63 |
| - < developerConnection>scm:git:ssh:// [email protected]/opentripplanner/OpenTripPlanner.git</ developerConnection> |
64 | 21 | <url>http://github.com/opentripplanner/OpenTripPlanner</url>
|
65 | 22 | </scm>
|
66 | 23 |
|
|
75 | 32 | </properties>
|
76 | 33 |
|
77 | 34 | <distributionManagement>
|
78 |
| - <!-- We are using Sonatype Nexus Staging instead of Maven Release plugin. |
79 |
| - Only a snapshot repo should be configured. Releases are done from that snapshot staging repo. --> |
80 |
| - <snapshotRepository> |
81 |
| - <id>ossrh</id> |
82 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
83 |
| - </snapshotRepository> |
| 35 | + <repository> |
| 36 | + <id>github</id> |
| 37 | + <name>OpenTripPlanner Maven Repository on Github Packages</name> |
| 38 | + <url>https://maven.pkg.github.com/opentripplanner/OpenTripPlanner/</url> |
| 39 | + </repository> |
84 | 40 | </distributionManagement>
|
85 | 41 |
|
86 | 42 | <build>
|
|
203 | 159 | </execution>
|
204 | 160 | </executions>
|
205 | 161 | </plugin>
|
206 |
| - <plugin> |
207 |
| - <!-- Recommended way to deploy to OSSRH , which allows deferred manual release to Central. --> |
208 |
| - <groupId>org.sonatype.plugins</groupId> |
209 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
210 |
| - <version>1.6.7</version> |
211 |
| - <extensions>true</extensions> |
212 |
| - <configuration> |
213 |
| - <serverId>ossrh</serverId> |
214 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
215 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
216 |
| - </configuration> |
217 |
| - </plugin> |
218 | 162 | <plugin>
|
219 | 163 | <groupId>com.webcohesion.enunciate</groupId>
|
220 | 164 | <artifactId>enunciate-maven-plugin</artifactId>
|
|
232 | 176 | <docsDir>${project.build.directory}/site/enunciate</docsDir>
|
233 | 177 | </configuration>
|
234 | 178 | </plugin>
|
235 |
| - <plugin> |
236 |
| - <!-- OTP includes an empty javadoc.jar file. See docs/javadoc/README.md --> |
237 |
| - <groupId>org.apache.maven.plugins</groupId> |
238 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
239 |
| - <version>3.2.0</version> |
240 |
| - <configuration><skip>true</skip></configuration> |
241 |
| - </plugin> |
242 | 179 | <plugin>
|
243 | 180 | <groupId>org.apache.maven.plugins</groupId>
|
244 | 181 | <artifactId>maven-source-plugin</artifactId>
|
|
285 | 222 | </execution>
|
286 | 223 | </executions>
|
287 | 224 | </plugin>
|
288 |
| - <plugin> |
289 |
| - <groupId>org.apache.maven.plugins</groupId> |
290 |
| - <artifactId>maven-gpg-plugin</artifactId> |
291 |
| - <version>1.5</version> |
292 |
| - <executions> |
293 |
| - <execution> |
294 |
| - <id>sign-artifacts</id> |
295 |
| - <!-- We sign in the verify phase, which means it will happen for install and deploy but not package. --> |
296 |
| - <phase>verify</phase> |
297 |
| - <goals> |
298 |
| - <goal>sign</goal> |
299 |
| - </goals> |
300 |
| - </execution> |
301 |
| - </executions> |
302 |
| - </plugin> |
303 | 225 | <plugin>
|
304 | 226 | <groupId>org.apache.maven.plugins</groupId>
|
305 | 227 | <artifactId>maven-surefire-plugin</artifactId>
|
|
0 commit comments