You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2017/10/07 14:44:46 UTC

juddi git commit: JUDDI-971 updating tomcat (again) JUDDI-979 adding enforcer plugin with some basic rules

Repository: juddi
Updated Branches:
  refs/heads/master 39f48ebcd -> 1f9ad6b8f


JUDDI-971 updating tomcat (again)
JUDDI-979 adding enforcer plugin with some basic rules


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/1f9ad6b8
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/1f9ad6b8
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/1f9ad6b8

Branch: refs/heads/master
Commit: 1f9ad6b8f8820d7f47c23de665405015c65ba6b8
Parents: 39f48eb
Author: Alex O'Ree <al...@apache.org>
Authored: Sat Oct 7 10:44:32 2017 -0400
Committer: Alex O'Ree <al...@apache.org>
Committed: Sat Oct 7 10:44:32 2017 -0400

----------------------------------------------------------------------
 pom.xml | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/1f9ad6b8/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6f9f54e..4afe38e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@ under the License.
 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 		<cxf.version>2.7.18</cxf.version>
 		<springframework.version>3.2.18.RELEASE</springframework.version>
-		<apache.tomcat.version>7.0.81</apache.tomcat.version>
+		<apache.tomcat.version>7.0.82</apache.tomcat.version>
 		<jacoco.it.execution.data.file>${project.build.directory}/coverage-reports/jacoco-it.exec</jacoco.it.execution.data.file>
 		<jacoco.ut.execution.data.file>${project.build.directory}/coverage-reports/jacoco-ut.exec</jacoco.ut.execution.data.file>
 
@@ -246,7 +246,7 @@ under the License.
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-site-plugin</artifactId>
-					<version>3.6</version>
+                    <version>3.6</version>
 				</plugin>
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
@@ -299,6 +299,31 @@ under the License.
 		</pluginManagement>
 		<plugins>
 			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>3.0.0-M1</version>
+				<executions>
+				  <execution>
+					<id>enforce-versions</id>
+					<goals>
+					  <goal>enforce</goal>
+					</goals>
+					<phase>validate</phase>
+					<configuration>
+					  <rules>
+						
+						<requireMavenVersion>
+						  <version>[3.0.3,)</version>
+						</requireMavenVersion>
+						<requireJavaVersion>
+						  <version>[1.6,)</version>
+						</requireJavaVersion>
+					  </rules>
+					</configuration>
+				  </execution>
+				</executions>
+			  </plugin>
+			<plugin>
 				<groupId>org.apache.felix</groupId>
 				<artifactId>maven-bundle-plugin</artifactId>
 			</plugin>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org