This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update parent, metadata, dependencies. require Java 7
- Loading branch information
Showing
3 changed files
with
58 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> |