]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
Reduce build logging.
authorRay Lee <ray.lee@lyrasis.org>
Fri, 12 Jan 2024 17:36:55 +0000 (12:36 -0500)
committerRay Lee <ray.lee@lyrasis.org>
Fri, 12 Jan 2024 17:36:55 +0000 (12:36 -0500)
build.xml
services/authentication/pstore/build.xml
services/authorization-mgt/import/build.xml

index aa244070164254507d08f4058afe319838559a8c..c931af85b9421da5180e2602d8a43dc62e797eb4 100644 (file)
--- a/build.xml
+++ b/build.xml
        </target>
 
        <target name="drop_nuxeo_db" if="${create_db.recreate}" description="drop nuxeo database">
-               <echo>Dropping nuxeo databases with credentials ${db.csadmin.user}:${db.csadmin.user.password}</echo>
+               <echo>Dropping nuxeo databases with user ${db.csadmin.user}</echo>
                <sql driver="${db.jdbc.driver.class}" url="${db.jdbc.csadmin.url}" userid="${db.csadmin.user}" password="${db.csadmin.user.password}" autocommit="true" src="${db.script.dir}/drop_nuxeo_db.sql">
                        <classpath>
                                <pathelement path="${db.driver.jar}" />
        </target>
 
        <target name="drop_cspace_db" if="${create_db.recreate}" description="drop cspace database">
-               <echo>Dropping the cspace database with credentials ${db.csadmin.user}:${db.csadmin.user.password}</echo>
+               <echo>Dropping the cspace database with user ${db.csadmin.user}</echo>
                <sql driver="${db.jdbc.driver.class}" url="${db.jdbc.csadmin.url}" userid="${db.csadmin.user}" password="${db.csadmin.user.password}" autocommit="true" src="${db.script.dir}/drop_cspace_db.sql">
                        <classpath>
                                <pathelement path="${db.driver.jar}" />
        </target>
 
        <target name="create_cspace_db" depends="drop_cspace_db">
-               <echo>Creating the cspace database with credentials ${db.csadmin.user}:${db.csadmin.user.password}</echo>
+               <echo>Creating the cspace database with user ${db.csadmin.user}</echo>
                <!--
                        The SQL create role/database statements may fail if the cspace role/database already exists. Since the goal of this target
                        is for the cspace role and database to be created, it's fine if they already exist, so onerror is set to "continue".
index 3f472893b4381d5b05e744f083b90b0f71ebb233..372d052e8c2c590282b1ee8b96ac2f3293d93c15 100644 (file)
 
     <target name="create_cspace_db"
             description="create tables(s), indices for authentication service">
-               <echo>Creating users table in the cspace database using credentials ${db.cspace.user}:${db.cspace.user.password}</echo>
+               <echo>Creating users table in the cspace database using user ${db.cspace.user}</echo>
                                <sql driver="${db.jdbc.driver.class}"
              url="${db.jdbc.cspace.url}"
              userid="${db.cspace.user}"
             <fileset dir="${src}/main/resources/"/>
         </copy>
     </target>
-    
+
     <target name="check.db.scripts.deploy.dir">
         <property name="db.scripts.deploy.dir" value="${jee.server.cspace}/cspace/services/db/${db}"/>
         <condition property="db.scripts.deploy.dir.exists">
index 3210975769815e1f10f85c02cee2b91514715144..80ea02a2080142041bfca43db51dddaf6c9dd04e 100644 (file)
             <arg value="${basedir}/pom.xml" />
             <arg value="-N" />
             <arg value="${mvn.opts}" />
-            <arg value="-X" />
+            <arg value="-e" />
+            <!-- <arg value="-X" /> -->
         </exec>
     </target>
     <target name="import-windows" if="osfamily-windows" depends="setup_hibernate.cfg">