blob: 2caed7760e062173b20f5f5ce278daa6326db7f9 [file] [log] [blame]
<!--
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
-->
<target name="setup-database" depends="init-common">
<antcall target="deploy-jdbc-common">
<param name="jdbc.conpool.name" value="jdbc-mypool-pool"/>
<param name="db.class" value="org.apache.derby.jdbc.ClientDataSource"/>
<param name="jdbc.resource.type" value="javax.sql.DataSource"/>
<param name="jdbc.resource.name" value="jdbc/mypool"/>
</antcall>
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="${resources.dottedname.prefix}.jdbc-connection-pool.jdbc-mypool-pool.property.connectionAttributes=;create=true"/>
</antcall>
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="${resources.dottedname.prefix}.jdbc-connection-pool.jdbc-mypool-pool.connection-validation-method=table"/>
</antcall>
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="${resources.dottedname.prefix}.jdbc-connection-pool.jdbc-mypool-pool.validation-table-name=sys.systables"/>
</antcall>
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="${resources.dottedname.prefix}.jdbc-connection-pool.jdbc-mypool-pool.is-connection-validation-required=true"/>
</antcall>
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="configs.config.default-config.ejb-container.ejb-timer-service.timer-datasource=jdbc/mypool"/>
</antcall>
</target>
<target name="unsetup-database" depends="init-common">
<antcall target="asadmin-common">
<param name="admin.command" value="set"/>
<param name="operand.props"
value="configs.config.default-config.ejb-container.ejb-timer-service.timer-datasource="/>
</antcall>
<antcall target="delete-jdbc-resource-common">
<param name="jdbc.resource.name" value="jdbc/mypool"/>
</antcall>
<antcall target="delete-jdbc-connpool-common">
<param name="jdbc.conpool.name" value="jdbc-mypool-pool"/>
</antcall>
</target>
<target name="save-logs" depends="init-common" >
<condition property="zip-logs">
<isset property="${save.logs}" />
</condition>
<echo message="saving logs to ${basedir}"/>
<zip destfile="${module}-logs.zip"
basedir="${env.S1AS_HOME}"
includes="**/server.lo*"
/>
</target>