Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
organize dependencies; travis releases
Browse files Browse the repository at this point in the history
  • Loading branch information
andreybratus committed Apr 12, 2016
1 parent 9ff3d96 commit d5641b0
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 25 deletions.
13 changes: 12 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: java
sudo: false
jdk:
- oraclejdk7
before_install:
Expand All @@ -9,4 +10,14 @@ before_install:
- cd extensions/rdf-extension; JAVA_TOOL_OPTIONS='-Dfile.encoding=UTF-8' ant build
- cd $WORKDIR; OPENREFINE_ROOT=$WORKDIR/OpenRefine ./bin/refine-import.sh
install: "$WORKDIR/OpenRefine/refine -x refine.headless=true &"
sudo: false
deploy:
provider: releases
api_key:
secure: fJY201NThX+mQ2cln67MoPD2hllO2J/xOskX5wGRFAc+unFPM7KGzIPeVdInpTySwjJiNd2MnKhgdLJPcHtfVvvP1RzfrpLX0MpOh/UGg2pWL+XwB6aRKk516pWSj691daZOrCaZc4oMvoptl8N+TaH9qsLb+kqmxetQT7hnfwQ=
skip_cleanup: true
file:
- clients/clients-transformer/target/clients-transformer-$TRAVIS_TAG-jar-with-dependencies.jar
- clients/clients-cli/target/clients-cli-$TRAVIS_TAG-jar-with-dependencies.jar
on:
repo: fusepoolP3/p3-batchrefine
tags: true
2 changes: 1 addition & 1 deletion bin/refine-import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function import_jar {
id=$3
version=$4

mvn org.apache.maven.plugins:maven-install-plugin:2.3.1:install-file\
mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file\
-Dfile=${OPENREFINE_ROOT}/${source}\
-DgroupId=${group}\
-DartifactId=${id}\
Expand Down
14 changes: 7 additions & 7 deletions engines/engines-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<version>2.6</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -53,19 +53,19 @@
<artifactId>commons-io</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.clerezza</groupId>
<artifactId>rdf.jena.parser</artifactId>
<version>0.11</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>


Expand Down
2 changes: 1 addition & 1 deletion engines/engines-embedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4.1</version>
<version>2.6</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
Expand Down
10 changes: 5 additions & 5 deletions engines/engines-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down Expand Up @@ -76,11 +81,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>

<dependency>
<groupId>org.apache.clerezza</groupId>
<artifactId>rdf.jena.parser</artifactId>
Expand Down
11 changes: 2 additions & 9 deletions engines/engines-split/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,14 @@
<artifactId>commons-io</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>

<dependency>
<groupId>org.apache.clerezza</groupId>
<artifactId>rdf.jena.parser</artifactId>
<version>0.11</version>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

Expand Down
1 change: 0 additions & 1 deletion engines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
<module>engines-spark</module>
<module>engines-split</module>
</modules>


<scm>
<tag>pre-release</tag>
Expand Down

0 comments on commit d5641b0

Please sign in to comment.