mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 08:16:15 +10:00
- 추후 interceptor의 캐스팅 비용을 줄일 방안을 추가적으로 강구해야 함. git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1592 84d0f5b1-2673-498c-a247-62c4ff18d310
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
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="clean"/>
|
|
<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> |