Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 1268b85

Browse files
authored
Merge pull request #89 from chyt/master
Use boost-common from Maven repo on Travis, add release configuration
2 parents 8205887 + a47dd8b commit 1268b85

File tree

3 files changed

+26
-18
lines changed

3 files changed

+26
-18
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ jdk:
88

99
services:
1010
- docker
11-
env:
1211
before_install:
13-
- rm -rf ./boost-common
14-
- echo 'cloning boost-common lib ....'
15-
- git clone https://github.com/OpenLiberty/boost-common.git ./boost-common
16-
- cd ./boost-common
17-
- mvn clean install
18-
- cd ..
1912
- docker run -d -p 5000:5000 --restart=always --name registry registry:2
2013
install: true
2114
script:

boost-maven-plugin/pom.xml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616
<artifactId>boost-maven-plugin</artifactId>
1717
<packaging>maven-plugin</packaging>
1818

19-
<properties>
20-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
22-
<maven.compiler.source>1.8</maven.compiler.source>
23-
<maven.compiler.target>1.8</maven.compiler.target>
24-
</properties>
25-
2619
<dependencies>
2720

2821
<!-- Boost dependencies -->
@@ -37,7 +30,7 @@
3730
<dependency>
3831
<groupId>io.openliberty.boost</groupId>
3932
<artifactId>boost-common</artifactId>
40-
<version>0.1-SNAPSHOT</version>
33+
<version>0.1</version>
4134
</dependency>
4235

4336
<!-- Other dependencies -->

pom.xml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,36 @@
1111
<artifactId>boost-maven-parent</artifactId>
1212
<version>0.1-SNAPSHOT</version>
1313
<packaging>pom</packaging>
14-
14+
1515
<name>boost-maven-plugin Parent</name>
16-
16+
17+
<parent>
18+
<groupId>net.wasdev.maven.parent</groupId>
19+
<artifactId>parent</artifactId>
20+
<version>1.4</version>
21+
<relativePath />
22+
</parent>
23+
24+
<licenses>
25+
<license>
26+
<name>Eclipse Public License 1.0 (EPL-1.0)</name>
27+
<url>https://raw.github.com/OpenLiberty/boost-maven/master/LICENSE</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
31+
32+
<scm>
33+
<connection>scm:git:git@github.com:OpenLiberty/boost-maven.git</connection>
34+
<developerConnection>scm:git:git@github.com:OpenLiberty/boost-maven.git</developerConnection>
35+
<url>git@github.com:OpenLiberty/boost-maven.git</url>
36+
<tag>HEAD</tag>
37+
</scm>
38+
1739
<modules>
1840
<module>boost-bom</module>
1941
<module>boost-maven-plugin</module>
2042
</modules>
21-
43+
2244
<properties>
2345
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2446
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)