Author: brianf
Date: Tue Sep 11 12:06:19 2007
New Revision: 574666

URL: http://svn.apache.org/viewvc?rev=574666&view=rev
Log:
added IT sample

Added:
    maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/
    maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/
    
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/
    
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/
    
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/pom.xml
    
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/pom.xml

Added: 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/pom.xml?rev=574666&view=auto
==============================================================================
--- 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/pom.xml
 (added)
+++ 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/enforcer-rules/pom.xml
 Tue Sep 11 12:06:19 2007
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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";>
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+           <groupId>org.apache.maven.archetype.test</groupId>
+        <artifactId>inheritence-test</artifactId>
+               <version>1-SNAPSHOT</version>
+       </parent>
+       
+       <artifactId>enforcer-rules</artifactId>
+       <packaging>jar</packaging>
+       <version>1.0-SNAPSHOT</version>
+
+       <name>Enforcer Rules</name>
+       <description>This component contains the standard Enforcer 
Rules</description>
+       <build>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.4</source>
+                                       <target>1.4</target>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.plexus</groupId>
+                               <artifactId>plexus-maven-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <goals>
+                                                       <goal>descriptor</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+ <plugin>
+       <groupId>org.apache.maven.plugins</groupId>
+       <artifactId>maven-jar-plugin</artifactId>
+       <executions>
+         <execution>
+           <goals>
+             <goal>test-jar</goal>
+           </goals>
+         </execution>
+       </executions>
+     </plugin>
+               </plugins>
+       </build>
+                  <dependencies>
+                       <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-artifact</artifactId>
+                       <version>2.0.7</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-plugin-api</artifactId>
+                       <version>2.0.7</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-project</artifactId>
+                       <version>2.0.7</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-core</artifactId>
+                       <version>2.0.7</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.codehaus.plexus</groupId>
+                       <artifactId>plexus-utils</artifactId>
+                       <version>1.4.2</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven.shared</groupId>
+                       <artifactId>maven-plugin-testing-harness</artifactId>
+                       <scope>test</scope>
+                       <version>1.1</version>
+               </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+                       <version>2.3</version>
+        </dependency>
+        <dependency>
+            <groupId>org.beanshell</groupId>
+            <artifactId>bsh</artifactId>
+                       <version>2.0b4</version>
+        </dependency>
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>3.8.1</version>
+                       <scope>test</scope>
+               </dependency>   
+       </dependencies>
+</project>

Added: 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/pom.xml?rev=574666&view=auto
==============================================================================
--- 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/pom.xml
 (added)
+++ 
maven/sandbox/trunk/archetypeng/archetype-plugin/src/test/projects/simple-inheritence/pom.xml
 Tue Sep 11 12:06:19 2007
@@ -0,0 +1,122 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you 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";>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>maven-parent</artifactId>
+    <groupId>org.apache.maven</groupId>
+    <version>6</version>
+    <relativePath>../pom/maven/pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.maven.archetype.test</groupId>
+  <artifactId>inheritence-test</artifactId>
+  <packaging>pom</packaging>
+  <name>Inheritence Parent</name>
+  <version>1-SNAPSHOT</version>
+  <description>Enforcer is a build rule execution framework.</description>
+  <url>http://maven.apache.org/enforcer</url>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://jira.codehaus.org/browse/MENFORCER</url>
+  </issueManagement>
+  <inceptionYear>2006</inceptionYear>
+       <licenses>
+               <license>
+                       <name>Apache License 2.0</name>
+                       
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+                       <distribution>repo</distribution>
+               </license>
+       </licenses>
+  <developers>
+       <developer>
+               <id>brianf</id>
+               <name>Brian Fox</name>
+               <email>[EMAIL PROTECTED]</email>
+               <roles>
+                       <role>Lead Developer</role>
+               </roles>
+               <timezone>5</timezone>
+       </developer>
+       </developers>
+   <mailingLists>
+    <mailingList>
+      <name>Maven User List</name>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <post>[EMAIL PROTECTED]</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
+      <otherArchives>
+        <otherArchive>http://www.mail-archive.com/[EMAIL 
PROTECTED]/</otherArchive>
+        
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
+      </otherArchives>
+    </mailingList>
+  </mailingLists>
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/enforcer/trunk/</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/enforcer/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/enforcer/trunk</url>
+  </scm>
+  
+  <build>
+    <resources>
+                       <!-- Include super-pom defined main/resources
+                       Removing this section will break the build.
+                       Since we have defined a new build/resources
+                       section for the Apache process LICENSE and NOTICE
+                       files, this original default section is now
+                       required. -->
+      <resource>
+               <directory>${basedir}/src/main/resources</directory>
+         </resource>
+    </resources>
+    <pluginManagement>
+       <plugins>
+        <plugin>
+          <artifactId>maven-release-plugin</artifactId>
+          <configuration>
+            
<tagBase>https://svn.apache.org/repos/asf/maven/enforcer/tags</tagBase>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+    <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/www/maven.apache.org/enforcer/</url>
+    </site>
+  </distributionManagement>
+  <repositories>
+    <repository>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <id>codehaus.snapshots</id>
+      <name>Codehaus Snapshot Development Repository</name>
+      <url>http://snapshots.repository.codehaus.org</url>
+    </repository>
+  </repositories>
+  
+    <modules>
+               <module>enforcer-rules</module>
+   </modules>
+  
+</project>


Reply via email to