[maven-release-plugin]  copy for tag maven-archetype-plugin-1.2

git-svn-id: https://svn.apache.org/repos/asf/maven/archetypes/tags/maven-archetype-plugin-1.2@1414625 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/resources/META-INF/maven/archetype-metadata.xml b/src/main/resources/META-INF/maven/archetype-metadata.xml
index f71009c..3472dd7 100644
--- a/src/main/resources/META-INF/maven/archetype-metadata.xml
+++ b/src/main/resources/META-INF/maven/archetype-metadata.xml
@@ -25,7 +25,7 @@
     <fileSet filtered="true" packaged="true">
       <directory>src/main/java</directory>
     </fileSet>
-    <fileSet filtered="false" packaged="false">
+    <fileSet filtered="true" packaged="false">
       <directory>src/it</directory>
     </fileSet>
   </fileSets>
diff --git a/src/main/resources/archetype-resources/src/it/simple-it/pom.xml b/src/main/resources/archetype-resources/src/it/simple-it/pom.xml
index 8ef1065..9f2f619 100644
--- a/src/main/resources/archetype-resources/src/it/simple-it/pom.xml
+++ b/src/main/resources/archetype-resources/src/it/simple-it/pom.xml
@@ -1,13 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <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/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>org.apache.maven.archetypes</groupId>
-  <artifactId>maven-plugin-archetype-it</artifactId>
+  <groupId>${groupId}.it</groupId>
+  <artifactId>simple-it</artifactId>
   <version>1.0-SNAPSHOT</version>
 
-  <name>${artifactId} Maven Plugin</name>
-  <url>http://maven.apache.org</url>
+  <description>A simple IT verifying the basic use case.</description>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -16,11 +16,12 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>@pom.groupId@</groupId>
-        <artifactId>@pom.artifactId@</artifactId>
-        <version>@pom.version@</version>
+        <groupId>@project.groupId@</groupId>
+        <artifactId>@project.artifactId@</artifactId>
+        <version>@project.version@</version>
         <executions>
           <execution>
+            <id>touch</id>
             <phase>validate</phase>
             <goals>
               <goal>touch</goal>
@@ -30,5 +31,4 @@
       </plugin>
     </plugins>
   </build>
-
 </project>