mirror of
https://git.freebsd.org/ports.git
synced 2025-07-11 22:39:16 -04:00
JDBC resource cleanup code is mundane, error prone work so these classes abstract out all of the cleanup tasks from your code leaving you with what you really wanted to do with JDBC in the first place: query and update data. WWW: http://jakarta.apache.org/commons/dbutils/ PR: 93324 Submitted by: Michael Winking <mwfp@foldl.net>
20 lines
1.1 KiB
XML
20 lines
1.1 KiB
XML
# use installed junit, instead of unnecessarily downloading and and building a custom one (which didn't work anyway)
|
|
*** build.xml.old Sun Jan 1 09:43:41 2006
|
|
--- build.xml Sun Jan 1 09:32:51 2006
|
|
***************
|
|
*** 139,152 ****
|
|
</javadoc>
|
|
</target>
|
|
<target name="get-deps" unless="noget" depends="init">
|
|
- <get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar">
|
|
- </get>
|
|
- <get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar">
|
|
- </get>
|
|
- <get dest="${libdir}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.jar">
|
|
- </get>
|
|
- <get dest="${libdir}/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-optional-1.5.jar">
|
|
- </get>
|
|
</target>
|
|
<target name="install-maven">
|
|
<get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${repo}/maven/maven-install-latest.jar">
|
|
--- 139,144 ----
|