jvanzyl 2004/05/07 19:23:48
Modified: maven-core/src/main/java/org/apache/maven/plugin/descriptor
GoalDescriptor.java PluginDescriptorBuilder.java
Removed: maven-core/src/main/java/org/apache/maven/plugin/descriptor
MethodDescriptor.java
Log:
o no more singleton mode so we don't need the MethodDescriptor
Revision Changes Path
1.6 +1 -8
maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/GoalDescriptor.java
Index: GoalDescriptor.java
===================================================================
RCS file:
/home/cvs/maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/GoalDescriptor.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- GoalDescriptor.java 2 Apr 2004 16:14:33 -0000 1.5
+++ GoalDescriptor.java 8 May 2004 02:23:48 -0000 1.6
@@ -35,8 +35,6 @@
private String description;
- private MethodDescriptor method;
-
private boolean requiresDependencyResolution = true;
private boolean requiresProject = true;
@@ -54,11 +52,6 @@
public String getDescription()
{
return description;
- }
-
- public MethodDescriptor getMethod()
- {
- return method;
}
public List getParameters()
1.4 +1 -3
maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
Index: PluginDescriptorBuilder.java
===================================================================
RCS file:
/home/cvs/maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- PluginDescriptorBuilder.java 21 Mar 2004 00:33:17 -0000 1.3
+++ PluginDescriptorBuilder.java 8 May 2004 02:23:48 -0000 1.4
@@ -43,8 +43,6 @@
xstream.alias( "prereq", String.class );
- xstream.alias( "method", MethodDescriptor.class );
-
xstream.alias( "parameter", ParameterDescriptor.class );
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]