Skip to content

Commit 703cecb

Browse files
author
Luke Spragg
committed
Use oss.sonatype.org repositories.
Minor cleanup and reorganizing of pom.xml.
1 parent ff439a6 commit 703cecb

File tree

1 file changed

+36
-16
lines changed

1 file changed

+36
-16
lines changed

pom.xml

Lines changed: 36 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<artifactId>react</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
99
<packaging>jar</packaging>
10-
<url>http://www.spout.org</url>
1110
<inceptionYear>2013</inceptionYear>
11+
<url>https://github.com/SpoutDev/React</url>
1212
<description>Java port of the ReactReact3D C++ physics library, relicensed with permission.</description>
1313

1414
<!-- Parent information -->
1515
<parent>
16-
<groupId>org.spout</groupId>
17-
<artifactId>shared-parent</artifactId>
18-
<version>1</version>
16+
<groupId>org.sonatype.oss</groupId>
17+
<artifactId>oss-parent</artifactId>
18+
<version>7</version>
1919
</parent>
2020

2121
<!-- Build properties -->
@@ -26,6 +26,16 @@
2626
<commit>unknown</commit>
2727
</properties>
2828

29+
<!-- License information -->
30+
<licenses>
31+
<license>
32+
<name>Spout License Version 1</name>
33+
<url>http://spout.in/licensev1</url>
34+
<distribution>repo</distribution>
35+
<comments>GNU Lesser General Public License Version 3, but with a provision that files are released under the MIT license 180 days after they are published.</comments>
36+
</license>
37+
</licenses>
38+
2939
<!-- Organization information -->
3040
<organization>
3141
<name>Spout LLC</name>
@@ -51,16 +61,6 @@
5161
</developer>
5262
</developers>
5363

54-
<!-- License information -->
55-
<licenses>
56-
<license>
57-
<name>Spout License Version 1</name>
58-
<url>http://spout.in/licensev1</url>
59-
<distribution>repo</distribution>
60-
<comments>GNU Lesser General Public License Version 3, but with a provision that files are released under the MIT license 180 days after they are published.</comments>
61-
</license>
62-
</licenses>
63-
6464
<!-- Source code access -->
6565
<scm>
6666
<connection>scm:git:git://github.com/SpoutDev/React.git</connection>
@@ -83,15 +83,35 @@
8383
<!-- Dependency repositories -->
8484
<repositories>
8585
<repository>
86-
<id>spout-repo</id>
87-
<url>http://nexus.spout.org/content/groups/public/</url>
86+
<id>sonatype-nexus-releases</id>
87+
<url>https://oss.sonatype.org/content/repositories/releases</url>
88+
<snapshots>
89+
<enabled>true</enabled>
90+
<updatePolicy>always</updatePolicy>
91+
</snapshots>
92+
</repository>
93+
<repository>
94+
<id>sonatype-nexus-snapshots</id>
95+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
8896
<snapshots>
8997
<enabled>true</enabled>
9098
<updatePolicy>always</updatePolicy>
9199
</snapshots>
92100
</repository>
93101
</repositories>
94102

103+
<!-- Build plugin repositories -->
104+
<pluginRepositories>
105+
<pluginRepository>
106+
<id>sonatype-nexus-releases</id>
107+
<url>https://oss.sonatype.org/content/repositories/releases</url>
108+
</pluginRepository>
109+
<pluginRepository>
110+
<id>sonatype-nexus-snapshots</id>
111+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
112+
</pluginRepository>
113+
</pluginRepositories>
114+
95115
<!-- Project dependencies -->
96116
<dependencies>
97117
<!-- Provided by third-party -->

0 commit comments

Comments
 (0)