Skip to content

Commit 22e969b

Browse files
committed
Adopt acegi-standard-project POM and conventions
1 parent 4a01fda commit 22e969b

17 files changed

+771
-399
lines changed

.travis-settings.xml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<settings>
3+
<servers>
4+
<server>
5+
<id>ossrh</id>
6+
<username>${env.CENTRAL_USERNAME}</username>
7+
<password>${env.CENTRAL_PASSWORD}</password>
8+
</server>
9+
<server>
10+
<id>github</id>
11+
<password>${env.GITHUB_PASSWORD}</password>
12+
</server>
13+
</servers>
14+
<profiles>
15+
<profile>
16+
<id>ossrh</id>
17+
<activation>
18+
<activeByDefault>true</activeByDefault>
19+
</activation>
20+
<properties>
21+
<gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname>
22+
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
23+
</properties>
24+
</profile>
25+
</profiles>
26+
</settings>

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cache:
2+
directories:
3+
- $HOME/.m2
4+
language: java
5+
jdk: oraclejdk8
6+
install:
7+
- mvn -B -Pdeploy -V dependency:go-offline
8+
script:
9+
- mvn -B -Pdeploy -Dgpg.skip=true verify
10+
notifications:
11+
email:
12+
- ben.alex@acegi.com.au

LICENSE.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/

0 commit comments

Comments
 (0)