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

Commit

Permalink
Switch from Sonatype to Plexus
Browse files Browse the repository at this point in the history
update parent, metadata, dependencies.
require Java 7
  • Loading branch information
rfscholte authored Oct 16, 2019
1 parent 0cff29e commit fae90bb
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 24 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: java
jdk:
- openjdk8
- openjdk11
- openjdk13
- openjdk14

# No need for preliminary install step.
install: true
#
# Run all integration tests.
script:
- "mvn --show-version --errors --batch-mode clean verify"
#
cache:
directories:
- $HOME/.m2
branches:
except:
- gh-pages
notifications:
email:
- [email protected]
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Plexus-Cipher
============

[![Build Status](https://travis-ci.org/codehaus-plexus/plexus-cipher.svg?branch=master)](https://travis-ci.org/codehaus-plexus/plexus-cipher)
[![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)

The current master is now at https://github.com/codehaus-plexus/plexus-cipher

For publishing [the site](https://codehaus-plexus.github.io/plexus-cipher/) do the following:

```
mvn -Preporting verify site site:stage scm-publish:publish-scm
```
46 changes: 22 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,43 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.sonatype.spice</groupId>
<artifactId>spice-parent</artifactId>
<version>15</version>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus</artifactId>
<version>5.1</version>
</parent>

<groupId>org.sonatype.plexus</groupId>
<artifactId>plexus-cipher</artifactId>
<version>1.8-SNAPSHOT</version>

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

<scm>
<connection>scm:git:[email protected]:codehaus-plexus/plexus-cipher.git</connection>
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-cipher.git</developerConnection>
<url>http://github.com/codehaus-plexus/plexus-cipher</url>
</scm>
<issueManagement>
<system>jira</system>
<url>https://github.com/codehaus-plexus/plexus-cipher/issues</url>
</issueManagement>
<distributionManagement>
<site>
<id>sonatype.org-sites</id>
<url>${spiceSiteBaseUrl}/${project.artifactId}</url>
<id>github:gh-pages</id>
<url>${project.scm.developerConnection}</url>
</site>
</distributionManagement>

<properties>
<javaVersion>7</javaVersion>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.eclipse.m2e</groupId>
Expand Down Expand Up @@ -59,14 +70,6 @@
</pluginManagement>

<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -118,20 +121,15 @@
<dependency>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-inject-bean</artifactId>
<version>2.2.0</version>
<version>2.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>

<scm>
<connection>scm:git:[email protected]/sonatype/plexus-cipher.git</connection>
<developerConnection>scm:git:ssh://[email protected]/sonatype/plexus-cipher.git</developerConnection>
<url>http://github.com/sonatype/plexus-cipher</url>
</scm>

</project>

0 comments on commit fae90bb

Please sign in to comment.