Skip to content

Commit 0646c5c

Browse files
committed
Switch from Sonatype to Plexus
1 parent 857ef2b commit 0646c5c

File tree

2 files changed

+34
-24
lines changed

2 files changed

+34
-24
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ target/
33
.classpath
44
.settings/
55
bin
6+
.idea
7+
*.iml

pom.xml

+32-24
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,57 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
6-
<groupId>org.sonatype.spice</groupId>
7-
<artifactId>spice-parent</artifactId>
8-
<version>15</version>
6+
<groupId>org.codehaus.plexus</groupId>
7+
<artifactId>plexus</artifactId>
8+
<version>6.5</version>
9+
<relativePath/>
910
</parent>
1011

11-
<groupId>org.sonatype.plexus</groupId>
1212
<artifactId>plexus-sec-dispatcher</artifactId>
1313
<version>1.5-SNAPSHOT</version>
1414

15-
<url>http://spice.sonatype.org/${project.artifactId}</url>
1615
<name>Plexus Security Dispatcher Component</name>
17-
16+
17+
<scm>
18+
<connection>scm:git:[email protected]:codehaus-plexus/plexus-sec-dispatcher.git</connection>
19+
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-sec-dispatcher.git</developerConnection>
20+
<url>https://github.com/codehaus-plexus/plexus-sec-dispatcher.git</url>
21+
</scm>
22+
<issueManagement>
23+
<system>jira</system>
24+
<url>https://github.com/codehaus-plexus/plexus-sec-dispatcher/issues</url>
25+
</issueManagement>
26+
1827
<distributionManagement>
1928
<site>
20-
<id>sonatype.org-sites</id>
21-
<url>${spiceSiteBaseUrl}/${project.artifactId}</url>
29+
<id>github:gh-pages</id>
30+
<url>${project.scm.developerConnection}</url>
2231
</site>
2332
</distributionManagement>
24-
33+
34+
<properties>
35+
<javaVersion>7</javaVersion>
36+
</properties>
37+
2538
<build>
2639
<plugins>
2740
<plugin>
28-
<groupId>org.codehaus.plexus</groupId>
29-
<artifactId>plexus-maven-plugin</artifactId>
30-
<version>1.3.5</version>
41+
<groupId>org.eclipse.sisu</groupId>
42+
<artifactId>sisu-maven-plugin</artifactId>
43+
<version>0.3.4</version>
3144
<executions>
3245
<execution>
3346
<goals>
34-
<goal>descriptor</goal>
47+
<goal>main-index</goal>
48+
<goal>test-index</goal>
3549
</goals>
3650
</execution>
3751
</executions>
3852
</plugin>
39-
<plugin>
40-
<artifactId>maven-compiler-plugin
41-
</artifactId>
42-
<configuration>
43-
<source>1.4</source>
44-
<target>1.4</target>
45-
</configuration>
46-
</plugin>
4753
<plugin>
4854
<groupId>org.codehaus.modello</groupId>
4955
<artifactId>modello-maven-plugin</artifactId>
56+
<version>1.11</version>
5057
<configuration>
5158
<version>1.0.0</version>
5259
<models>
@@ -72,11 +79,12 @@
7279
<dependency>
7380
<groupId>org.codehaus.plexus</groupId>
7481
<artifactId>plexus-utils</artifactId>
82+
<version>3.3.0</version>
7583
</dependency>
7684
<dependency>
77-
<groupId>org.sonatype.plexus</groupId>
85+
<groupId>org.codehaus.plexus</groupId>
7886
<artifactId>plexus-cipher</artifactId>
79-
<version>1.4</version>
87+
<version>1.8</version>
8088
</dependency>
8189
<dependency>
8290
<groupId>org.codehaus.plexus</groupId>
@@ -87,7 +95,7 @@
8795
<dependency>
8896
<groupId>junit</groupId>
8997
<artifactId>junit</artifactId>
90-
<version>3.8.2</version>
98+
<version>4.13.2</version>
9199
</dependency>
92100
</dependencies>
93101
</project>

0 commit comments

Comments
 (0)