Repository: incubator-tinkerpop
Updated Branches:
refs/heads/TINKERPOP3-1011 d25532a86 -> 06c180ba7
Introduce the "ci" profile to Travis
It builds locally with a sizeable reduction in logging.
Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/06c180ba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/06c180ba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/06c180ba
Branch: refs/heads/TINKERPOP3-1011
Commit: 06c180ba72a6642185d1b178e1b5e577a5fed168
Parents: d25532a
Author: Stephen Mallette <spmva@genoprime.com>
Authored: Thu Dec 3 13:26:07 2015 -0500
Committer: Stephen Mallette <spmva@genoprime.com>
Committed: Thu Dec 3 13:26:07 2015 -0500
----------------------------------------------------------------------
.travis.yml | 4 +---
pom.xml | 10 ++--------
2 files changed, 3 insertions(+), 11 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/06c180ba/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 8619a81..4b7e490 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,6 +9,4 @@ addons:
packages:
- oracle-java8-installer
script:
- - "mvn clean install"
- - "bin/process-docs.sh --dryRun"
- - "mvn process-resources -Djavadoc"
\ No newline at end of file
+ - "mvn clean install -Dci"
\ No newline at end of file
http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/06c180ba/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c184a75..0332cdc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -133,7 +133,7 @@ limitations under the License.
the modules under the root directory, not the root
directory itself. -->
<log4j.properties.dir>${project.basedir}/../gremlin-server/conf/</log4j.properties.dir>
- <log4j.properties>log4j-server.properties</log4j.properties>
+ <log4j.properties>log4j.properties</log4j.properties>
<metrics.version>3.0.2</metrics.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -930,15 +930,9 @@ limitations under the License.
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
- <argLine>-Dlog4j.configuration=${log4j.properties}
- </argLine>
<systemPropertyVariables>
- <muteTestLogs>false</muteTestLogs>
+ <muteTestLogs>true</muteTestLogs>
</systemPropertyVariables>
- <additionalClasspathElements>
- <!-- So that Log4j can find the Log4j properties file
-->
- <additionalClasspathElement>${log4j.properties.dir}</additionalClasspathElement>
- </additionalClasspathElements>
<excludes>
<exclude>**/*IntegrateTest.java</exclude>
<exclude>**/*PerformanceTest.java</exclude>
|