Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit fae90bb

Browse files
authored
Switch from Sonatype to Plexus
update parent, metadata, dependencies. require Java 7
1 parent 0cff29e commit fae90bb

File tree

3 files changed

+58
-24
lines changed

3 files changed

+58
-24
lines changed

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: java
2+
jdk:
3+
- openjdk8
4+
- openjdk11
5+
- openjdk13
6+
- openjdk14
7+
8+
# No need for preliminary install step.
9+
install: true
10+
#
11+
# Run all integration tests.
12+
script:
13+
- "mvn --show-version --errors --batch-mode clean verify"
14+
#
15+
cache:
16+
directories:
17+
- $HOME/.m2
18+
branches:
19+
except:
20+
- gh-pages
21+
notifications:
22+
email:
23+

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Plexus-Cipher
2+
============
3+
4+
[![Build Status](https://travis-ci.org/codehaus-plexus/plexus-cipher.svg?branch=master)](https://travis-ci.org/codehaus-plexus/plexus-cipher)
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.codehaus.plexus/plexus-cipher.svg?label=Maven%20Central)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.codehaus.plexus%22%20a%3A%plexus-cipher%22)
6+
7+
The current master is now at https://github.com/codehaus-plexus/plexus-cipher
8+
9+
For publishing [the site](https://codehaus-plexus.github.io/plexus-cipher/) do the following:
10+
11+
```
12+
mvn -Preporting verify site site:stage scm-publish:publish-scm
13+
```

pom.xml

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,43 @@
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>5.1</version>
99
</parent>
1010

11-
<groupId>org.sonatype.plexus</groupId>
1211
<artifactId>plexus-cipher</artifactId>
1312
<version>1.8-SNAPSHOT</version>
1413

15-
<url>http://spice.sonatype.org/${project.artifactId}</url>
1614
<name>Plexus Cipher: encryption/decryption Component</name>
1715

16+
<scm>
17+
<connection>scm:git:[email protected]:codehaus-plexus/plexus-cipher.git</connection>
18+
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-cipher.git</developerConnection>
19+
<url>http://github.com/codehaus-plexus/plexus-cipher</url>
20+
</scm>
21+
<issueManagement>
22+
<system>jira</system>
23+
<url>https://github.com/codehaus-plexus/plexus-cipher/issues</url>
24+
</issueManagement>
1825
<distributionManagement>
1926
<site>
20-
<id>sonatype.org-sites</id>
21-
<url>${spiceSiteBaseUrl}/${project.artifactId}</url>
27+
<id>github:gh-pages</id>
28+
<url>${project.scm.developerConnection}</url>
2229
</site>
2330
</distributionManagement>
2431

32+
<properties>
33+
<javaVersion>7</javaVersion>
34+
</properties>
35+
2536
<build>
2637
<pluginManagement>
2738
<plugins>
2839
<plugin>
2940
<groupId>org.apache.maven.plugins</groupId>
3041
<artifactId>maven-surefire-plugin</artifactId>
31-
<version>2.9</version>
42+
<version>2.22.1</version>
3243
</plugin>
3344
<plugin>
3445
<groupId>org.eclipse.m2e</groupId>
@@ -59,14 +70,6 @@
5970
</pluginManagement>
6071

6172
<plugins>
62-
<plugin>
63-
<artifactId>maven-compiler-plugin</artifactId>
64-
<configuration>
65-
<source>1.5</source>
66-
<target>1.5</target>
67-
</configuration>
68-
</plugin>
69-
7073
<plugin>
7174
<groupId>org.apache.maven.plugins</groupId>
7275
<artifactId>maven-surefire-plugin</artifactId>
@@ -118,20 +121,15 @@
118121
<dependency>
119122
<groupId>org.sonatype.sisu</groupId>
120123
<artifactId>sisu-inject-bean</artifactId>
121-
<version>2.2.0</version>
124+
<version>2.6.0</version>
122125
<scope>provided</scope>
123126
</dependency>
124127
<dependency>
125128
<groupId>junit</groupId>
126129
<artifactId>junit</artifactId>
127-
<version>3.8.2</version>
130+
<version>4.12</version>
131+
<scope>test</scope>
128132
</dependency>
129133
</dependencies>
130134

131-
<scm>
132-
<connection>scm:git:[email protected]/sonatype/plexus-cipher.git</connection>
133-
<developerConnection>scm:git:ssh://[email protected]/sonatype/plexus-cipher.git</developerConnection>
134-
<url>http://github.com/sonatype/plexus-cipher</url>
135-
</scm>
136-
137135
</project>

0 commit comments

Comments
 (0)