dustin / java-memcached-client

A simple, asynchronous, single-threaded memcached client written in java.

java-memcached-client / maven.xml
100644 24 lines (21 sloc) 0.635 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
 
<!-- Copyright (c) 2005 Dustin Sallings (dustin@spy.net) -->
 
<project default="jar" xmlns:ant="jelly:ant">
<preGoal name="java:compile">
<attainGoal name="hg:versions"/>
<attainGoal name="spy:buildinfo"/>
<attainGoal name="hg:changelog"/>
<attainGoal name="copySources"/>
</preGoal>
<postGoal name="clean">
<ant:delete file="cobertura.ser"/>
</postGoal>
<!-- make sources available within the jar file. -->
<goal name="copySources">
<copy todir="${maven.build.dir}/classes">
<fileset dir="${maven.src.dir}/java">
<include name="**/*.java"/>
</fileset>
</copy>
</goal>
</project>