mirror of https://github.com/apache/maven.git
Initialization of war plugin.
It doesn't work but don't break ci.sh and it's for Brett debugging. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f57388bd2a
commit
4d67c57d74
|
@ -97,7 +97,8 @@ public class MBoot
|
||||||
"maven-plugins/maven-plugin-plugin",
|
"maven-plugins/maven-plugin-plugin",
|
||||||
"maven-plugins/maven-pom-plugin",
|
"maven-plugins/maven-pom-plugin",
|
||||||
"maven-plugins/maven-resources-plugin",
|
"maven-plugins/maven-resources-plugin",
|
||||||
"maven-plugins/maven-surefire-plugin" };
|
"maven-plugins/maven-surefire-plugin",
|
||||||
|
"maven-plugins/maven-war-plugin" };
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Standard locations for resources in Maven projects.
|
// Standard locations for resources in Maven projects.
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
target
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
*.iml
|
|
@ -0,0 +1,49 @@
|
||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
|
||||||
|
<project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-plugin-parent</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
|
<type>plugin</type>
|
||||||
|
<name>Maven War Plugin</name>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<package>org.apache.maven.plugin.war</package>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<type>plugin</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>plexus</groupId>
|
||||||
|
<artifactId>plexus-container-default</artifactId>
|
||||||
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>plexus</groupId>
|
||||||
|
<artifactId>plexus-archiver</artifactId>
|
||||||
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-artifact</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-model</artifactId>
|
||||||
|
<version>2.0-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
|
@ -0,0 +1,120 @@
|
||||||
|
package org.apache.maven.plugin.war;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright 2001-2005 The Apache Software Foundation.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import org.apache.maven.plugin.AbstractPlugin;
|
||||||
|
import org.apache.maven.plugin.PluginExecutionRequest;
|
||||||
|
import org.apache.maven.plugin.PluginExecutionResponse;
|
||||||
|
import org.apache.maven.project.MavenProject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @goal exploded
|
||||||
|
* @phase process-classes
|
||||||
|
*
|
||||||
|
* @description build a jar
|
||||||
|
*
|
||||||
|
* @parameter
|
||||||
|
* name="jarName"
|
||||||
|
* type="String"
|
||||||
|
* required="true"
|
||||||
|
* validator=""
|
||||||
|
* expression="#project.build.finalName"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="compress"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.compress"
|
||||||
|
* default="true"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="index"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.index"
|
||||||
|
* default="false"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="manifest"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.manifest"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="mainClass"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.mainClass"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="addClasspath"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.addClasspath"
|
||||||
|
* default="false"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="addExtensions"
|
||||||
|
* type="String"
|
||||||
|
* required="false"
|
||||||
|
* validator=""
|
||||||
|
* expression="#maven.jar.addExtensions"
|
||||||
|
* default="false"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="outputDirectory"
|
||||||
|
* type="String"
|
||||||
|
* required="true"
|
||||||
|
* validator=""
|
||||||
|
* expression="#project.build.output"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="basedir"
|
||||||
|
* type="String"
|
||||||
|
* required="true"
|
||||||
|
* validator=""
|
||||||
|
* expression="#project.build.directory"
|
||||||
|
* description=""
|
||||||
|
* @parameter
|
||||||
|
* name="project"
|
||||||
|
* type="org.apache.maven.project.MavenProject"
|
||||||
|
* required="true"
|
||||||
|
* validator=""
|
||||||
|
* expression="#project"
|
||||||
|
* description="current MavenProject instance"
|
||||||
|
*
|
||||||
|
* @author <a href="evenisse@apache.org">Emmanuel Venisse</a>
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
|
public class ExplodedMojo
|
||||||
|
extends AbstractPlugin
|
||||||
|
{
|
||||||
|
public void execute( PluginExecutionRequest request, PluginExecutionResponse response )
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
System.out.println("webapp");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue