Disable packaging for travis to save time

This commit is contained in:
Antonin Delpeuch 2018-10-14 21:24:42 +01:00
parent 155fd92342
commit 900d78e891
2 changed files with 21 additions and 0 deletions

View File

@ -22,6 +22,7 @@ before_install:
- psql -c 'CREATE DATABASE test_db;' -U postgres
- psql -U postgres test_db < extensions/database/tests/conf/travis-pgsql.sql
- cp extensions/database/tests/conf/travis_tests.xml extensions/database/tests/conf/tests.xml
- cp packaging/travis_pom.xml packaging/pom.xml
- mvn process-resources
script:

20
packaging/travis_pom.xml Normal file
View File

@ -0,0 +1,20 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openrefine</groupId>
<artifactId>packaging</artifactId>
<packaging>pom</packaging>
<version>3.0</version>
<name>OpenRefine - dummy packaging</name>
<description>Dummy packaging for travis</description>
<url>http://openrefine.org/</url>
<parent>
<groupId>org.openrefine</groupId>
<artifactId>openrefine</artifactId>
<version>3.1-SNAPSHOT</version>
</parent>
</project>