mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-21 02:35:53 +10:00
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1453 84d0f5b1-2673-498c-a247-62c4ff18d310
31 lines
991 B
XML
31 lines
991 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="hippo_profiler_build" basedir=".">
|
|
<property name="maven.dir" value="C:\Develop\apache-maven-2.2.1"/>
|
|
<property name="agent.dir" value="${basedir}/../deploy/agent/agentlib/lib"/>
|
|
<property name="target.dir" value="${basedir}/target/"/>
|
|
|
|
<target name="deploy" depends="mvn.build.install, copy.agent">
|
|
</target>
|
|
|
|
<target name="mvn.build.install">
|
|
<exec executable="${maven.dir}/bin/mvn.bat">
|
|
<arg value="-Dmaven.test.skip=true"/>
|
|
<arg value="install"/>
|
|
</exec>
|
|
</target>
|
|
|
|
<target name="copy.agent">
|
|
<copy file="${target.dir}/hippo-tomcat-profiler-0.0.2.jar" todir="${agent.dir}" overwrite="true">
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="mvn.build.jar">
|
|
<exec executable="${maven.dir}/bin/mvn.bat">
|
|
<arg value="compile"/>
|
|
<arg value="jar:jar"/>
|
|
</exec>
|
|
</target>
|
|
|
|
|
|
</project> |