You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by gk...@apache.org on 2020/10/13 08:40:03 UTC

svn commit: r1882450 - in /turbine/fulcrum/trunk: README.txt hsqldb/pom.xml security/pom.xml security/torque/pom.xml testcontainer/pom.xml

Author: gk
Date: Tue Oct 13 08:40:03 2020
New Revision: 1882450

URL: http://svn.apache.org/viewvc?rev=1882450&view=rev
Log:
- Fulcrum dependency updates: hsqldb 2.5.1, torque 5.0, dbcp2 2.8.0, javadoc 3.1.0, junit 5.7.0, mockito 3.5.13

Modified:
    turbine/fulcrum/trunk/README.txt
    turbine/fulcrum/trunk/hsqldb/pom.xml
    turbine/fulcrum/trunk/security/pom.xml
    turbine/fulcrum/trunk/security/torque/pom.xml
    turbine/fulcrum/trunk/testcontainer/pom.xml

Modified: turbine/fulcrum/trunk/README.txt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/README.txt?rev=1882450&r1=1882449&r2=1882450&view=diff
==============================================================================
--- turbine/fulcrum/trunk/README.txt (original)
+++ turbine/fulcrum/trunk/README.txt Tue Oct 13 08:40:03 2020
@@ -67,8 +67,8 @@ Steps
   mvn release:prepare -DdryRun=true -DautoVersionSubmodules=true -Papache-release 
   // single
   mvn release:prepare -DdryRun=true -Papache-release 
-  // or to skip dependency check
-  mvn release:prepare -DdryRun=true -Papache-release -Ddependency.check.skip=true -DautoUpdate=false
+  // if dependency check is skipped by default
+  mvn release:prepare -DdryRun=true -Papache-release -Ddependency.check.skip=false
   // 
   mvn release:clean
 

Modified: turbine/fulcrum/trunk/hsqldb/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/pom.xml?rev=1882450&r1=1882449&r2=1882450&view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/pom.xml (original)
+++ turbine/fulcrum/trunk/hsqldb/pom.xml Tue Oct 13 08:40:03 2020
@@ -82,7 +82,7 @@
     <dependency>
       <groupId>org.hsqldb</groupId>
       <artifactId>hsqldb</artifactId>
-      <version>2.5.0</version>
+      <version>2.5.1</version>
     </dependency>
   </dependencies>
 

Modified: turbine/fulcrum/trunk/security/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/pom.xml?rev=1882450&r1=1882449&r2=1882450&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/pom.xml (original)
+++ turbine/fulcrum/trunk/security/pom.xml Tue Oct 13 08:40:03 2020
@@ -109,8 +109,8 @@
         <dependency>
           <groupId>org.apache.fulcrum</groupId>
           <artifactId>fulcrum-testcontainer</artifactId>
-          <!-- junit 5 seems to have problems to find unit tests in test scoped jar org.apache.fulcrum:fulcrum-security-api:test-jar, downgraded from 1.0.8-SNAPSHOT, classpath loading issue?  -->
-          <version>1.0.8</version>
+          <!-- junit 5 seems to have problems to find unit tests in test scoped jar org.apache.fulcrum:fulcrum-security-api:test-jar, upgrade from 1.0.8, classpath loading issue?  -->
+          <version>1.0.9-SNAPSHOT</version>
           <scope>test</scope>
         </dependency>
         <dependency>

Modified: turbine/fulcrum/trunk/security/torque/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/torque/pom.xml?rev=1882450&r1=1882449&r2=1882450&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/torque/pom.xml (original)
+++ turbine/fulcrum/trunk/security/torque/pom.xml Tue Oct 13 08:40:03 2020
@@ -36,7 +36,7 @@
 		<maven.compiler.target>1.8</maven.compiler.target>
 
 		<!-- Easy update of torque libs -->
-		<torque.version>4.1-SNAPSHOT</torque.version>
+		<torque.version>5.0</torque.version>
 		<torque.om>org.apache.fulcrum.security.torque.om</torque.om>
 		<torque.om.path>org/apache/fulcrum/security/torque/om</torque.om.path>
 	</properties>
@@ -87,7 +87,7 @@
 	      <plugin>
 	        <groupId>org.apache.maven.plugins</groupId>
 	        <artifactId>maven-javadoc-plugin</artifactId>
-	        <version>3.0.1</version>
+	        <version>3.2.0</version>
 	        <configuration>
 	          <show>public</show>
 	        </configuration>
@@ -115,9 +115,8 @@
 		<dependency>
 			<groupId>org.hsqldb</groupId>
 			<artifactId>hsqldb</artifactId>
-			<!-- broken -->
-			<!-- <version>2.4.1</version> -->
-			<version>1.8.0.10</version>
+			<version>2.5.1</version>
+			<!--version>1.8.0.10</version-->
 			<scope>test</scope>
 		</dependency>
 
@@ -130,7 +129,7 @@
 		<dependency>
 			<groupId>org.apache.commons</groupId>
 			<artifactId>commons-dbcp2</artifactId>
-			<version>2.7.0</version>
+			<version>2.8.0</version>
 		</dependency>
 
 		<!-- testing dependencies -->

Modified: turbine/fulcrum/trunk/testcontainer/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/testcontainer/pom.xml?rev=1882450&r1=1882449&r2=1882450&view=diff
==============================================================================
--- turbine/fulcrum/trunk/testcontainer/pom.xml (original)
+++ turbine/fulcrum/trunk/testcontainer/pom.xml Tue Oct 13 08:40:03 2020
@@ -58,7 +58,7 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.12</version>
+			<version>4.13</version>
 		</dependency>
         <dependency>
           <groupId>org.junit.jupiter</groupId>
@@ -93,7 +93,7 @@
 		<dependency>
 			<groupId>org.mockito</groupId>
 			<artifactId>mockito-core</artifactId>
-			<version>3.3.3</version>
+			<version>3.5.13</version>
 		</dependency>
 		<!-- Needed if testing with ECM -->
 		<dependency>
@@ -159,8 +159,8 @@
 	<properties>
 		<turbine.site.path>fulcrum/fulcrum-testcontainer</turbine.site.path>
 		<turbine.scmPubCheckoutDirectory>${turbine.site.cache}/fulcrum/testcontainer</turbine.scmPubCheckoutDirectory>
-		<junit.jupiter.version>5.6.2</junit.jupiter.version>
-		<junit.platform>1.6.2</junit.platform>
+		<junit.jupiter.version>5.7.0</junit.jupiter.version>
+		<junit.platform>1.7.0</junit.platform>
 	</properties>
 
 </project>