From: dion g. <dio...@us...> - 2004-11-23 07:37:11
|
diongillard 04/11/22 23:36:58 Added: db2 project.properties plugin.properties plugin.jelly project.xml Log: First cut Revision Changes Path 1.1 maven-plugins/db2/project.properties Index: project.properties =================================================================== # ------------------------------------------------------------------- # P R O J E C T P R O P E R T I E S # ------------------------------------------------------------------- maven.xdoc.date=left 1.1 maven-plugins/db2/plugin.properties Index: plugin.properties =================================================================== # ------------------------------------------------------------------- # P L U G I N P R O P E R I E S # ------------------------------------------------------------------- 1.1 maven-plugins/db2/plugin.jelly Index: plugin.jelly =================================================================== <project xmlns:define="jelly:define" xmlns:j="jelly:core" xmlns:db2="db2" xmlns="jelly:ant"> <!-- taglibs --> <define:taglib uri="db2"> <define:tag name="runFileQuietly"> <j:set var="command" value="db2cmd.exe -c -w -i ${file} ${dbuser} ${dbpassword} ${dbdatabase}"/> <exec executable="cmd.exe"> <arg value="/C" /> <arg value=""${command}; > NUL"" /> </exec> </define:tag> <define: tag name="runFile"> <exec dir="${dir}" executable="db2cmd.exe"> <arg value="-c" /> <arg value="-w" /> <arg value="-i" /> <arg value="${file}" /> <arg value="${dbuser}" /> <arg value="${dbpassword}" /> <arg value="${dbdatabase}" /> </exec> </define:tag> </define:taglib> </project> 1.1 maven-plugins/db2/project.xml Index: project.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> <id>maven-db2-plugin</id> <name>Maven DB2 Plug-in</name> <!-- groupId is in parent --> <currentVersion>1.0-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2004</inceptionYear> <package>net.sourceforge.mavenplugins</package> <!-- logo is in parent. no gumpRepositoryId --> <description>A plugin to access db2 functionality</description> <shortDescription>DB2 Plugin for Maven</shortDescription> <!-- issue tracking url, siteAddress are in parent --> <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/maven-db2-plugin/</siteDirectory> <!-- distributionDirectory is in the parent --> <repository> <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/db2</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/maven-plugins:maven-plugins/db2</developerConnection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/db2/</url> </repository> <!-- no versions yet --> <!-- mailingLists is in parent --> <developers> <developer> <name>dIon Gillard</name> <id>dion</id> <email>dio...@mu...</email> <organization>Multitask Consulting</organization> </developer> </developers> <!-- no contributors --> <!-- licenses section not done yet --> <!-- no dependencies yet --> <!-- build is in the parent --> <!-- reports is in the parent --> </project> |