KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > maven > plugins > antWithRefs > ArtifactsTask


1 package org.apache.maven.plugins.antWithRefs;
2
3 import org.apache.tools.ant.BuildException;
4 import org.apache.tools.ant.Task;
5
6 public class ArtifactsTask
7     extends Task
8 {
9
10     public void execute()
11         throws BuildException
12     {
13         log( String.valueOf( getProject().getReference( "artifacts" ) ) );
14     }
15
16 }
17
Popular Tags