mirror of https://github.com/apache/maven.git
[MNG-3849] mercury build - added path resolution timestamping, removed path output
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@749917 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7d8f206bc2
commit
eb8855fab8
|
@ -83,6 +83,9 @@ END SNIPPET: ant-bootstrap -->
|
|||
<mercury:local-repository location="${maven.repo.local}"/>
|
||||
<mercury:remote-repository id="central" location="${maven.repo.central}"/>
|
||||
|
||||
<property name="tsFormat" value="HH:mm:ss"/>
|
||||
<tstamp><format property="start.time" pattern="${tsFormat}"/></tstamp>
|
||||
|
||||
<!-- classpaths with default names: mercury.classpath, mercury.classpath.test, mercury.classpath.runtime -->
|
||||
<mercury:resolve-dependencies scope="compile">
|
||||
<mercury:dependency source="maven:${basedir}/dependencies.xml"/>
|
||||
|
@ -96,6 +99,12 @@ END SNIPPET: ant-bootstrap -->
|
|||
|
||||
</mercury:resolve-dependencies>
|
||||
|
||||
<tstamp><format property="stop.time" pattern="${tsFormat}"/></tstamp>
|
||||
|
||||
<echo>===============================</echo>
|
||||
<echo>Start ${start.time}, stop ${stop.time}</echo>
|
||||
<echo>===============================</echo>
|
||||
|
||||
<delete file="${basedir}/dependencies.xml"/>
|
||||
|
||||
<!-- only one named classpath: modello.classpath -->
|
||||
|
@ -182,11 +191,12 @@ END SNIPPET: ant-bootstrap -->
|
|||
<include name="*/src/main/*"/>
|
||||
</dirset>
|
||||
</path>
|
||||
|
||||
<!--
|
||||
<echo>========================================================================</echo>
|
||||
<property name="mc" refid="mercury.classpath"/>
|
||||
<echo>mercury.classpath=${mc}</echo>
|
||||
<echo>========================================================================</echo>
|
||||
-->
|
||||
|
||||
<mkdir dir="bootstrap/target/classes"/>
|
||||
|
||||
|
|
Loading…
Reference in New Issue