svn commit: r1879940 - in /db/torque/torque4/trunk: ./ torque-ant-tasks/ torque-generator/ torque-maven-plugin/ torque-runtime/ torque-site/ torque-site/src/site/xdoc/developer-info/ torque-templates/ torque-test/ torque-test/src/test/profile/postgresql/

[email protected]
Newsgroups gmane.comp.jakarta.turbine.torque.devel
Message-ID <[email protected]>
Author: gk
Date: Thu Jul 16 11:42:49 2020
New Revision: 1879940

URL: http://svn.apache.org/viewvc?rev=1879940&view=rev
Log:
- ignore torque-test/torque-test, torque.usersettings.properties, *.iml files ..
- add release info to README.md

Modified:
    db/torque/torque4/trunk/   (props changed)
    db/torque/torque4/trunk/README.md
    db/torque/torque4/trunk/torque-ant-tasks/   (props changed)
    db/torque/torque4/trunk/torque-generator/   (props changed)
    db/torque/torque4/trunk/torque-maven-plugin/   (props changed)
    db/torque/torque4/trunk/torque-runtime/   (props changed)
    db/torque/torque4/trunk/torque-runtime/pom.xml
    db/torque/torque4/trunk/torque-site/   (props changed)
    db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml
    db/torque/torque4/trunk/torque-templates/   (props changed)
    db/torque/torque4/trunk/torque-test/   (props changed)
    db/torque/torque4/trunk/torque-test/README.md
    db/torque/torque4/trunk/torque-test/src/test/profile/postgresql/   (props changed)

Propchange: db/torque/torque4/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,5 +1,7 @@
+*.iml
 .classpath
 .idea
 .project
 .settings
+derby.log
 target

Modified: db/torque/torque4/trunk/README.md
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/README.md?rev=1879940&r1=1879939&r2=1879940&view=diff
==============================================================================
--- db/torque/torque4/trunk/README.md (original)
+++ db/torque/torque4/trunk/README.md Thu Jul 16 11:42:49 2020
@@ -50,6 +50,8 @@ You need the ant tool installed.
 
 #### Test module
 
+Two kinds of tests exist. Module "internal" tests without database dependency or explicitely inlined dependency as in torque-templates (ddl templates) and database testing in the module "Torque-test".
+
 *Torque-test* allows to test against databases and provides a [README](torque-test/README.md) of its own. You need the ant tool installed.
 
 You may start Torque-Test module in the root by this command (with default database derbyEmbedded)
@@ -94,3 +96,36 @@ mvn clean install -Papache-release,beans
 - hsqldb-jenkins: see above
 - apache-release: sets as database derbyEmbedded
 
+#### Deploy Artifacts and Release modules
+
+Find more information here: [Developer Guide][https://db.apache.org/torque/torque-4.0/developer-info/developer-guide.html]
+
+- Requirements
+
+Public Key is added to KEYS. 
+
+- Deploy artifacts
+
+You will be asked for your gpg passphrase durign the build process, if not provided otherwise.
+
+    mvn package deploy
+
+- Release modules
+
+
+First test the release locally until the build is successfull, then clean again and run and perform release:
+
+    mvn release:prepare -DdryRun=true -DautoVersionSubmodules=true -Papache-release,beans,managers
+
+    mvn release:clean
+
+    mvn release:prepare -DautoVersionSubmodules=true -Papache-release,beans,managers
+
+    mvn release:perform 
+
+Now close the staging repository after Login in Nexus Repo
+  https://repository.apache.org/index.html#stagingRepositories
+  
+Then prepare voting information and voting. 
+
+If voting was successfull, proceed by publishing in Nexus Repo and distribute binaries and sources to d. Otherwise drop the staged repo in Nexus repo.

Propchange: db/torque/torque4/trunk/torque-ant-tasks/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,4 +1,5 @@
-.settings
-target
+*.iml
 .classpath
 .project
+.settings
+target

Propchange: db/torque/torque4/trunk/torque-generator/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,6 +1,7 @@
+*.iml
+.checkstyle
+.classpath
 .project
-target
 .settings
-.classpath
-.checkstyle
 derby.log
+target

Propchange: db/torque/torque4/trunk/torque-maven-plugin/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,5 +1,6 @@
+*.iml
+.checkstyle
+.classpath
 .project
-target
 .settings
-.classpath
-.checkstyle
+target

Propchange: db/torque/torque4/trunk/torque-runtime/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,12 +1,13 @@
-junit*.properties
+*.iml
 *.log
 *~
+.checkstyle
 .classpath
 .project
+.settings
 build.properties
 jcoverage.ser
+junit*.properties
 logs
 svn-commit*
 target
-.settings
-.checkstyle

Modified: db/torque/torque4/trunk/torque-runtime/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-runtime/pom.xml?rev=1879940&r1=1879939&r2=1879940&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-runtime/pom.xml (original)
+++ db/torque/torque4/trunk/torque-runtime/pom.xml Thu Jul 16 11:42:49 2020
@@ -86,6 +86,11 @@
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-jcl</artifactId>
         </dependency>
+        
+         <dependency>
+             <groupId>org.apache.logging.log4j</groupId>
+             <artifactId>log4j-core</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>org.junit.jupiter</groupId>

Propchange: db/torque/torque4/trunk/torque-site/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,12 +1,12 @@
-junit*.properties
+*.iml
 *.log
 *~
 .classpath
 .project
+.settings
 build.properties
 jcoverage.ser
+junit*.properties
 logs
 svn-commit*
 target
-
-.settings

Modified: db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml?rev=1879940&r1=1879939&r2=1879940&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml (original)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml Thu Jul 16 11:42:49 2020
@@ -48,7 +48,7 @@
           torque 4 trunk. Run <code>mvn install</code>.
           The runtime, generator, templates, maven 3 generator plugin
           and ant tasks will be built in turn and installed
-          in your local maven 2 repository.
+          in your local maven repository.
         </p>
       </subsection>
       

Propchange: db/torque/torque4/trunk/torque-templates/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,7 +1,8 @@
+*.iml
+.checkstyle
+.classpath
 .project
-target
 .settings
-.classpath
-.checkstyle
 checkstyle-cache.ccf
 derby.log
+target

Propchange: db/torque/torque4/trunk/torque-test/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,7 +1,8 @@
+*.iml
+.checkstyle
+.classpath
 .project
-target
 .settings
-.classpath
-.checkstyle
-
 derby.log
+target
+torque-test

Modified: db/torque/torque4/trunk/torque-test/README.md
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-test/README.md?rev=1879940&r1=1879939&r2=1879940&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-test/README.md (original)
+++ db/torque/torque4/trunk/torque-test/README.md Thu Jul 16 11:42:49 2020
@@ -91,7 +91,7 @@ or instead of mysql replace with postgre
 
 - Maven environment
 
-Maven 3.3.9 might need to be upgrade to newest version (testet version 3.6.3).
+Maven 3.3.9 might need to be upgraded to newest version (tested version 3.6.3).
 
 - Docker environment
 

Propchange: db/torque/torque4/trunk/torque-test/src/test/profile/postgresql/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jul 16 11:42:49 2020
@@ -1,3 +1,4 @@
 build.properties
 target
+torque.usersettings.properties
 velocity.log
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.