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

Commit

Permalink
Merge pull request #89 from chyt/master
Browse files Browse the repository at this point in the history
Use boost-common from Maven repo on Travis, add release configuration
  • Loading branch information
chyt committed Sep 7, 2018
2 parents 8205887 + a47dd8b commit 1268b85
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,7 @@ jdk:

services:
- docker
env:
before_install:
- rm -rf ./boost-common
- echo 'cloning boost-common lib ....'
- git clone https://github.com/OpenLiberty/boost-common.git ./boost-common
- cd ./boost-common
- mvn clean install
- cd ..
- docker run -d -p 5000:5000 --restart=always --name registry registry:2
install: true
script:
Expand Down
9 changes: 1 addition & 8 deletions boost-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,6 @@
<artifactId>boost-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>

<!-- Boost dependencies -->
Expand All @@ -37,7 +30,7 @@
<dependency>
<groupId>io.openliberty.boost</groupId>
<artifactId>boost-common</artifactId>
<version>0.1-SNAPSHOT</version>
<version>0.1</version>
</dependency>

<!-- Other dependencies -->
Expand Down
28 changes: 25 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,36 @@
<artifactId>boost-maven-parent</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>boost-maven-plugin Parent</name>


<parent>
<groupId>net.wasdev.maven.parent</groupId>
<artifactId>parent</artifactId>
<version>1.4</version>
<relativePath />
</parent>

<licenses>
<license>
<name>Eclipse Public License 1.0 (EPL-1.0)</name>
<url>https://raw.github.com/OpenLiberty/boost-maven/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:[email protected]:OpenLiberty/boost-maven.git</connection>
<developerConnection>scm:git:[email protected]:OpenLiberty/boost-maven.git</developerConnection>
<url>[email protected]:OpenLiberty/boost-maven.git</url>
<tag>HEAD</tag>
</scm>

<modules>
<module>boost-bom</module>
<module>boost-maven-plugin</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down

0 comments on commit 1268b85

Please sign in to comment.