| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!DOCTYPE project [ |
| <!-- |
| |
| Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <!ENTITY commonSetup SYSTEM "file:./../../../config/properties.xml"> |
| <!ENTITY commonBuild SYSTEM "file:./../../../config/common.xml"> |
| <!ENTITY testproperties SYSTEM "file:./build.properties"> |
| ]> |
| |
| <project name="transaction" default="usage" basedir="."> |
| |
| &commonSetup; |
| &commonBuild; |
| &testproperties; |
| |
| <target name="all" depends="pointbase"/> |
| <target name="pointbase" depends="setup-pointbase,build,deploy,run,undeploy,unsetup-pointbase"/> |
| <target name="oracle" depends="setup-oracle,build,deploy,run,undeploy,unsetup-oracle"/> |
| |
| <target name="clean" depends="init-common"> |
| <antcall target="clean-common" /> |
| </target> |
| |
| <target name="compile" depends="clean"> |
| <antcall target="compile-common"> |
| <param name="src" value="ejb/beanB"/> |
| </antcall> |
| <antcall target="compile-common"> |
| <param name="src" value="client"/> |
| </antcall> |
| </target> |
| |
| <target name="build" depends="compile"> |
| <antcall target="build-ear-common"/> |
| </target> |
| |
| <target name="setup-pointbase" depends="init-common"> |
| <antcall target="execute-sql-common"> |
| <param name="sql.file" value="sql/create_pointbase.sql"/> |
| </antcall> |
| <antcall target="create-jdbc-connpool-common"> |
| <param name="db.class" value="com.pointbase.xa.xaDataSource"/> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool1"/> |
| </antcall> |
| <antcall target="create-jdbc-resource-common"> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool1"/> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB1"/> |
| </antcall> |
| <antcall target="execute-sql-common"> |
| <param name="db.url" value="jdbc:pointbase:server://${db.host}:9093/sun-appserv-samples,new"/> |
| <param name="sql.file" value="sql/create_pointbase.sql"/> |
| </antcall> |
| <antcall target="create-jdbc-connpool-common"> |
| <param name="db.url" value="jdbc:pointbase:server://${db.host}:9093/sun-appserv-samples"/> |
| <param name="db.class" value="com.pointbase.xa.xaDataSource"/> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool2"/> |
| </antcall> |
| <antcall target="create-jdbc-resource-common"> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool2"/> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB2"/> |
| </antcall> |
| </target> |
| |
| <target name="setup-oracle" depends="init-common"> |
| <antcall target="create-oracle-jdbc-connpool-common"> |
| <param name="db.url" value="${db.url1}"/> |
| <param name="db.user" value="${db.user1}"/> |
| <param name="db.pwd" value="${db.pwd1}"/> |
| <param name="db.class" value="${db.class1}"/> |
| <param name="jdbc.resource.type" value="${jdbc.resource.type1}"/> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool1"/> |
| </antcall> |
| <antcall target="create-jdbc-resource-common"> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool1"/> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB1"/> |
| </antcall> |
| <antcall target="create-oracle-jdbc-connpool-common"> |
| <param name="db.url" value="${db.url2}"/> |
| <param name="db.user" value="${db.user2}"/> |
| <param name="db.pwd" value="${db.pwd2}"/> |
| <param name="db.class" value="${db.class2}"/> |
| <param name="jdbc.resource.type" value="${jdbc.resource.type2}"/> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool2"/> |
| </antcall> |
| <antcall target="create-jdbc-resource-common"> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool2"/> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB2"/> |
| </antcall> |
| </target> |
| |
| <target name="deploy" depends="init-common"> |
| <antcall target="deploy-common"/> |
| </target> |
| |
| <target name="run" depends="init-common"> |
| <antcall target="runclient-common"/> |
| </target> |
| |
| <target name="unsetup-pointbase" depends="init-common"> |
| <antcall target="delete-jdbc-resource-common"> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB1"/> |
| </antcall> |
| <antcall target="delete-jdbc-resource-common"> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB2"/> |
| </antcall> |
| <antcall target="delete-jdbc-connpool-common"> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool1"/> |
| </antcall> |
| <antcall target="delete-jdbc-connpool-common"> |
| <param name="jdbc.conpool.name" value="jdbc-pointbase-pool2"/> |
| </antcall> |
| |
| <antcall target="execute-sql-common"> |
| <param name="sql.file" value="sql/drop_pointbase.sql"/> |
| </antcall> |
| <antcall target="execute-sql-common"> |
| <param name="db.url" |
| value="jdbc:pointbase:server://${db.host}:9093/sun-appserv-samples"/> |
| <param name="sql.file" value="sql/drop_pointbase.sql"/> |
| </antcall> |
| |
| </target> |
| |
| <target name="unsetup-oracle" depends="init-common"> |
| <antcall target="delete-jdbc-resource-common"> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB1"/> |
| </antcall> |
| <antcall target="delete-jdbc-resource-common"> |
| <param name="jdbc.resource.name" value="jdbc/s1qeDB2"/> |
| </antcall> |
| <antcall target="delete-jdbc-connpool-common"> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool1"/> |
| </antcall> |
| <antcall target="delete-jdbc-connpool-common"> |
| <param name="jdbc.conpool.name" value="jdbc-oracle-pool2"/> |
| </antcall> |
| </target> |
| |
| <target name="undeploy" depends="init-common"> |
| <antcall target="undeploy-common"/> |
| </target> |
| |
| <target name="usage"> |
| <antcall target="usage-common"/> |
| </target> |
| |
| |
| <!-- ================================================================ --> |
| <!-- Target to create JDBC connection pool --> |
| <!-- ================================================================ --> |
| <target name="create-oracle-jdbc-connpool-common" depends="init-common"> |
| <echo message="created jdbc connection pool ${jdbc.conpool.name}" |
| level="verbose"/> |
| <antcall target="asadmin-common-ignore-fail"> |
| <param name="admin.command" |
| value="create-jdbc-connection-pool |
| --datasourceclassname ${db.class} |
| --restype ${jdbc.resource.type} |
| --target ${appserver.instance.name}" /> |
| <param name="operand.props" value="${jdbc.conpool.name}" /> |
| </antcall> |
| <antcall target="asadmin-common-ignore-fail"> |
| <param name="admin.command" value="set" /> |
| <param name="operand.props" |
| value="${resources.dottedname.prefix}.jdbc-connection-pool.${jdbc.conpool.name}.property.URL=${db.url}"/> |
| </antcall> |
| <antcall target="asadmin-common-ignore-fail"> |
| <param name="admin.command" value="set" /> |
| <param name="operand.props" |
| value="${resources.dottedname.prefix}.jdbc-connection-pool.${jdbc.conpool.name}.property.User=${db.user}" /> |
| </antcall> |
| <antcall target="asadmin-common-ignore-fail"> |
| <param name="admin.command" value="set" /> |
| <param name="operand.props" |
| value="${resources.dottedname.prefix}.jdbc-connection-pool.${jdbc.conpool.name}.property.Password=${db.pwd}" /> |
| </antcall> |
| </target> |
| |
| </project> |