Author: jvanzyl
Date: Sat Oct 21 14:42:42 2006
New Revision: 466570
URL: http://svn.apache.org/viewvc?view=rev&rev=466570
Log:
adding complete touch plugin
Added:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml
(with props)
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
(with props)
Added: maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml
URL:
http://svn.apache.org/viewvc/maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml?view=auto&rev=466570
==============================================================================
--- maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml
(added)
+++ maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml Sat
Oct 21 14:42:42 2006
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ Copyright 2005-2006 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.
+ -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>maven-plugins</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <version>3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>maven-it-plugin-touch</artifactId>
+ <packaging>maven-plugin</packaging>
+ <name>Maven Core Integration Test Plugin</name>
+ <version>1.1-SNAPSHOT</version>
+ <inceptionYear>2001</inceptionYear>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0</version>
+ </dependency>
+ </dependencies>
+</project>
Propchange:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/pom.xml
------------------------------------------------------------------------------
svn:keywords = "Author Date Id Revision"
Added:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
URL:
http://svn.apache.org/viewvc/maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java?view=auto&rev=466570
==============================================================================
---
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
(added)
+++
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
Sat Oct 21 14:42:42 2006
@@ -0,0 +1,151 @@
+package org.apache.maven.plugin.coreit;
+
+/*
+ * Copyright 2001-2004 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.artifact.Artifact;
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.project.MavenProject;
+
+import java.io.File;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.util.Map;
+
+/**
+ * @goal touch
+ *
+ * @phase process-sources
+ *
+ * @description Goal which cleans the build
+ */
+public class CoreItMojo
+ extends AbstractMojo
+{
+ /**
+ * @parameter expression="${project}"
+ */
+ private MavenProject project;
+
+ /**
+ * @parameter expression="${project.build.directory}"
+ * @required
+ */
+ private String outputDirectory;
+
+ /** Test setting of plugin-artifacts on the PluginDescriptor instance.
+ * @parameter expression="${plugin.artifactMap}"
+ * @required
+ */
+ private Map pluginArtifacts;
+
+ /**
+ * @parameter expression="target/test-basedir-alignment"
+ */
+ private File basedirAlignmentDirectory;
+
+ /**
+ * @parameter alias="pluginFile"
+ */
+ private String pluginItem = "foo";
+
+ /**
+ * @parameter
+ */
+ private String goalItem = "bar";
+
+ /**
+ * @parameter expression="${artifactToFile}"
+ */
+ private String artifactToFile;
+
+ /**
+ * @parameter expression="${fail}"
+ */
+ private boolean fail = false;
+
+ public void execute()
+ throws MojoExecutionException
+ {
+ if ( fail )
+ {
+ throw new MojoExecutionException( "Failing per \'fail\' parameter
(specified in pom or system properties)" );
+ }
+
+ touch( new File( outputDirectory ), "touch.txt" );
+
+ // This parameter should be aligned to the basedir as the parameter
type is specified
+ // as java.io.File
+
+ if ( basedirAlignmentDirectory.getPath().equals(
"target/test-basedir-alignment" ) )
+ {
+ throw new MojoExecutionException( "basedirAlignmentDirectory not
aligned" );
+ }
+
+ touch( basedirAlignmentDirectory, "touch.txt" );
+
+ File outDir = new File( outputDirectory );
+
+ // Test parameter setting
+ if ( pluginItem != null )
+ {
+ touch( outDir, pluginItem );
+ }
+
+ if ( goalItem != null )
+ {
+ touch( outDir, goalItem );
+ }
+
+ if ( artifactToFile != null )
+ {
+ Artifact artifact = (Artifact) pluginArtifacts.get( artifactToFile
);
+
+ File artifactFile = artifact.getFile();
+
+ String filename = artifactFile.getAbsolutePath().replace('/',
'_').replace(':', '_') + ".txt";
+
+ touch( outDir, filename );
+ }
+
+ project.getBuild().setFinalName( "coreitified" );
+ }
+
+ private static void touch( File dir, String file )
+ throws MojoExecutionException
+ {
+ try
+ {
+ if ( !dir.exists() )
+ {
+ dir.mkdirs();
+ }
+
+ File touch = new File( dir, file );
+
+ FileWriter w = new FileWriter( touch );
+
+ w.write( file );
+
+ w.close();
+ }
+ catch ( IOException e )
+ {
+ throw new MojoExecutionException( "Error touching file", e );
+ }
+ }
+}
Propchange:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/sandbox/maven-it/maven-it-plugins/maven-it-plugin-touch/src/main/java/org/apache/maven/plugin/coreit/CoreItMojo.java
------------------------------------------------------------------------------
svn:keywords = "Author Date Id Revision"