Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1578 - in development/main/magic: core/etc/deliverables/templates spells/checkstyle/etc/deliverables/templates

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1578 - in development/main/magic: core/etc/deliverables/templates spells/checkstyle/etc/deliverables/templates
  • Date: Mon, 24 Jan 2005 18:26:45 +0100

Author: mcconnell
Date: Mon Jan 24 18:26:45 2005
New Revision: 1578

Modified:
development/main/magic/core/etc/deliverables/templates/reactor.template
development/main/magic/core/etc/deliverables/templates/standard.template

development/main/magic/spells/checkstyle/etc/deliverables/templates/checkstyle.template
Log:
add some task descriptions

Modified:
development/main/magic/core/etc/deliverables/templates/reactor.template
==============================================================================
--- development/main/magic/core/etc/deliverables/templates/reactor.template
(original)
+++ development/main/magic/core/etc/deliverables/templates/reactor.template
Mon Jan 24 18:26:45 2005
@@ -29,31 +29,31 @@
<x:reactor target="init"/>
</target>

- <target name="clean">
+ <target name="clean" description="Clean all projects with the reactor
scope.">
<x:reactor target="clean"/>
</target>

- <target name="prepare">
+ <target name="prepare" description="Prepare all sub-project sources.">
<x:reactor target="prepare"/>
</target>

- <target name="build">
+ <target name="build" description="Build all sub-project sources.">
<x:reactor target="build"/>
</target>

- <target name="package">
+ <target name="package" description="Prepare the sub-project artifacts.">
<x:reactor target="package"/>
</target>

- <target name="test">
+ <target name="test" description="Invoke tests on all sub-projects.">
<x:reactor target="test"/>
</target>

- <target name="install">
+ <target name="install" description="Build and install all sub-project
artifacts.">
<x:reactor target="install"/>
</target>

- <target name="default">
+ <target name="default" description="Invoke the default target in all
sub-projects.">
<x:reactor/>
</target>


Modified:
development/main/magic/core/etc/deliverables/templates/standard.template
==============================================================================
--- development/main/magic/core/etc/deliverables/templates/standard.template
(original)
+++ development/main/magic/core/etc/deliverables/templates/standard.template
Mon Jan 24 18:26:45 2005
@@ -25,35 +25,35 @@
uri="@PROJECT-PLUGIN-URI@"/>
</magic:init>

- <target name="info">
+ <target name="info" description="List the project key.">
<x:info/>
</target>

- <target name="init" depends="info">
+ <target name="init" depends="info" description="Initialize build
listeners.">
<x:init/>
</target>

- <target name="clean" depends="info">
+ <target name="clean" depends="info" description="Clean the target
directory.">
<x:clean/>
</target>

- <target name="prepare" depends="init">
+ <target name="prepare" depends="init" description="Prepare sources for
build.">
<x:prepare/>
</target>

- <target name="build" depends="prepare">
+ <target name="build" depends="prepare" description="Build source content.">
<x:javac/>
</target>

- <target name="package" depends="build">
+ <target name="package" depends="build" description="Package build
content.">
<x:jar/>
</target>

- <target name="test" depends="package">
+ <target name="test" depends="package" description="Test packaged content.">
<x:junit/>
</target>

- <target name="install" depends="test">
+ <target name="install" depends="test" description="Install package to
local cache.">
<x:install/>
</target>


Modified:
development/main/magic/spells/checkstyle/etc/deliverables/templates/checkstyle.template
==============================================================================
---
development/main/magic/spells/checkstyle/etc/deliverables/templates/checkstyle.template
(original)
+++
development/main/magic/spells/checkstyle/etc/deliverables/templates/checkstyle.template
Mon Jan 24 18:26:45 2005
@@ -21,7 +21,8 @@
<project name="checkstyle"
xmlns:magic="antlib:net.dpml.magic" >

- <target name="checkstyle" depends="prepare"
unless="project.checkstyle.disable" >
+ <target name="checkstyle" depends="prepare"
unless="project.checkstyle.disable"
+ description="Create a checkstyle report.">
<property name="project.checkstyle.dest" value="target/checkstyle"/>
<property name="project.checkstyle.format"
value="artifact:format:dpml/magic/dpml"/>
<property name="project.checkstyle.reports"
value="target/reports/checkstyle"/>



  • svn commit: r1578 - in development/main/magic: core/etc/deliverables/templates spells/checkstyle/etc/deliverables/templates, mcconnell, 01/24/2005

Archive powered by MHonArc 2.6.24.

Top of Page