File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ sudo: false
5
5
jdk :
6
6
- oraclejdk8
7
7
8
- notifications :
9
- email : false
8
+ install :
9
+ mvn --settings .util/.maven.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
10
+
11
+ script :
12
+ - mvn test -B
10
13
11
14
env :
12
15
global :
15
18
cache :
16
19
directories :
17
20
- " $HOME/.m2"
21
+
22
+ notifications :
23
+ email : false
Original file line number Diff line number Diff line change
1
+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0"
2
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0
4
+ http://maven.apache.org/xsd/settings-1.0.0.xsd" >
5
+ <servers >
6
+ <server >
7
+ <!-- Maven Central Deployment -->
8
+ <id >ossrh</id >
9
+ <username >${env.SONATYPE_USERNAME}</username >
10
+ <password >${env.SONATYPE_PASSWORD}</password >
11
+ </server >
12
+ </servers >
13
+
14
+ <profiles >
15
+ <profile >
16
+ <id >ossrh</id >
17
+ <activation >
18
+ <activeByDefault >true</activeByDefault >
19
+ </activation >
20
+ <properties >
21
+ <gpg .executable>${env.GPG_EXECUTABLE}</gpg .executable>
22
+ <gpg .passphrase>${env.GPG_PASSPHRASE}</gpg .passphrase>
23
+ </properties >
24
+ </profile >
25
+ </profiles >
26
+ </settings >
You can’t perform that action at this time.
0 commit comments