You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by wi...@apache.org on 2015/03/27 19:15:31 UTC

[33/50] [abbrv] incubator-commonsrdf git commit: move coveralls to parent pom and fix the command in travis config

move coveralls to parent pom and fix the command in travis config


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/5bb67d3c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/5bb67d3c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/5bb67d3c

Branch: refs/heads/master
Commit: 5bb67d3ce126707c76f4ab2d97fee084613fb70f
Parents: cae4d08
Author: Peter Ansell <p_...@yahoo.com>
Authored: Tue Jan 27 13:15:28 2015 +1100
Committer: Peter Ansell <p_...@yahoo.com>
Committed: Tue Jan 27 13:15:28 2015 +1100

----------------------------------------------------------------------
 .travis.yml    |  2 +-
 pom.xml        | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 simple/pom.xml | 57 -----------------------------------------------------
 3 files changed, 55 insertions(+), 60 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/5bb67d3c/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 736752b..a254e30 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,4 +6,4 @@ notifications:
     - ansell.peter@gmail.com
     - sergio@wikier.org
 after_success:
-  - mvn clean test jacoco:report coveralls:jacoco
+  - mvn clean test jacoco:report coveralls:report

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/5bb67d3c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8e6d75b..54ce42e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -187,8 +187,60 @@
                             <encoding>UTF-8</encoding>
                         </configuration>
                     </plugin>
-                </plugins>
-            </build>
+					<!-- Create code coverage reports and submit them to coveralls.io. -->
+					<plugin>
+						<groupId>org.eluder.coveralls</groupId>
+						<artifactId>coveralls-maven-plugin</artifactId>
+						<version>3.0.1</version>
+					</plugin>
+					<plugin>
+						<groupId>org.jacoco</groupId>
+						<artifactId>jacoco-maven-plugin</artifactId>
+						<version>0.7.2.201409121644</version>
+						<executions>
+							<execution>
+								<id>prepare-agent</id>
+								<goals>
+									<goal>prepare-agent</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+			    </plugins>
+				<pluginManagement>
+					<plugins>
+						<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
+						<plugin>
+							<groupId>org.eclipse.m2e</groupId>
+							<artifactId>lifecycle-mapping</artifactId>
+							<version>1.0.0</version>
+							<configuration>
+								<lifecycleMappingMetadata>
+									<pluginExecutions>
+										<pluginExecution>
+											<pluginExecutionFilter>
+												<groupId>org.jacoco</groupId>
+												<artifactId>
+													jacoco-maven-plugin
+												</artifactId>
+												<versionRange>
+													[0.7.2.201409121644,)
+												</versionRange>
+												<goals>
+													<goal>prepare-agent</goal>
+												</goals>
+											</pluginExecutionFilter>
+											<action>
+												<ignore></ignore>
+											</action>
+										</pluginExecution>
+									</pluginExecutions>
+								</lifecycleMappingMetadata>
+							</configuration>
+						</plugin>
+					</plugins>
+				</pluginManagement>
+			</build>
         </profile>
         <profile>
             <id>java6</id>

http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/5bb67d3c/simple/pom.xml
----------------------------------------------------------------------
diff --git a/simple/pom.xml b/simple/pom.xml
index 4f1cc5f..e85f275 100644
--- a/simple/pom.xml
+++ b/simple/pom.xml
@@ -41,61 +41,4 @@
 			<scope>test</scope>
 		</dependency>
 	</dependencies>
-
-	<build>
-		<plugins>
-			<!-- Create code coverage reports and submit them to coveralls.io. -->
-			<plugin>
-				<groupId>org.eluder.coveralls</groupId>
-				<artifactId>coveralls-maven-plugin</artifactId>
-				<version>3.0.1</version>
-			</plugin>
-			<plugin>
-				<groupId>org.jacoco</groupId>
-				<artifactId>jacoco-maven-plugin</artifactId>
-				<version>0.7.2.201409121644</version>
-				<executions>
-					<execution>
-						<id>prepare-agent</id>
-						<goals>
-							<goal>prepare-agent</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-		<pluginManagement>
-			<plugins>
-				<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
-				<plugin>
-					<groupId>org.eclipse.m2e</groupId>
-					<artifactId>lifecycle-mapping</artifactId>
-					<version>1.0.0</version>
-					<configuration>
-						<lifecycleMappingMetadata>
-							<pluginExecutions>
-								<pluginExecution>
-									<pluginExecutionFilter>
-										<groupId>org.jacoco</groupId>
-										<artifactId>
-											jacoco-maven-plugin
-										</artifactId>
-										<versionRange>
-											[0.7.2.201409121644,)
-										</versionRange>
-										<goals>
-											<goal>prepare-agent</goal>
-										</goals>
-									</pluginExecutionFilter>
-									<action>
-										<ignore></ignore>
-									</action>
-								</pluginExecution>
-							</pluginExecutions>
-						</lifecycleMappingMetadata>
-					</configuration>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-	</build>
 </project>