Author: schof
Date: Thu Jun  1 16:13:52 2006
New Revision: 410994

URL: http://svn.apache.org/viewvc?rev=410994&view=rev
Log:
moved design time test case to design time module

Added:
    struts/shale/branches/mvn_reorg/designtime/src/test/
    struts/shale/branches/mvn_reorg/designtime/src/test/java/
    struts/shale/branches/mvn_reorg/designtime/src/test/java/org/
    struts/shale/branches/mvn_reorg/designtime/src/test/java/org/apache/
    struts/shale/branches/mvn_reorg/designtime/src/test/java/org/apache/shale/
    struts/shale/branches/mvn_reorg/pom.xml

Added: struts/shale/branches/mvn_reorg/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=410994&view=auto
==============================================================================
--- struts/shale/branches/mvn_reorg/pom.xml (added)
+++ struts/shale/branches/mvn_reorg/pom.xml Thu Jun  1 16:13:52 2006
@@ -0,0 +1,303 @@
+<!--
+/*
+ * Copyright 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.
+ *
+ * $Id: pom.xml 160293 2006-06-01 16:29:07Z jmitchell $
+ */
+-->
+<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.struts</groupId>
+        <artifactId>struts-parent</artifactId>
+        <version>2</version>
+    </parent>
+    <groupId>org.apache.struts.shale</groupId>
+    <artifactId>struts-shale-parent</artifactId>
+    <version>1.0.3-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Apache Shale Framework</name>
+    <url>http://struts.apache.org/struts-shale</url>
+
+    <!-- http://jira.codehaus.org/browse/MNG-2136 -->
+    <profiles>
+        <profile>
+            <id>designtime</id>
+            <modules>
+                <module>designtime</module>
+            </modules>
+        </profile>
+        <profile>
+            <activation>
+                <jdk>1.5</jdk>
+            </activation>
+            <modules>
+                <module>tiger</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>myfaces</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+                <property>
+                    <name>maven.shale.jsf.impl</name>
+                    <value>myfaces</value>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>myfaces</groupId>
+                    <artifactId>myfaces-api</artifactId>
+                    <version>1.1.1</version>
+                </dependency>
+                <dependency>
+                    <groupId>myfaces</groupId>
+                    <artifactId>myfaces-impl</artifactId>
+                    <version>1.1.1</version>
+                    <scope>runtime</scope>
+                </dependency>
+            <!-- These should be specified in the myfaces pom -->
+                <dependency>
+                    <groupId>commons-codec</groupId>
+                    <artifactId>commons-codec</artifactId>
+                    <version>1.2</version>
+                </dependency>
+                <dependency>
+                    <groupId>commons-el</groupId>
+                    <artifactId>commons-el</artifactId>
+                    <version>1.0</version>
+                </dependency>
+                <dependency>
+                    <groupId>commons-fileupload</groupId>
+                    <artifactId>commons-fileupload</artifactId>
+                    <version>1.0</version>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>jsfri</id>
+            <activation>
+                <property>
+                    <name>maven.shale.jsf.impl</name>
+                    <value>jsfri</value>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>javax.faces</groupId>
+                    <artifactId>jsf-api</artifactId>
+                    <version>1.1</version>
+                </dependency>
+                <dependency>
+                    <groupId>javax.faces</groupId>
+                    <artifactId>jsf-impl</artifactId>
+                    <version>1.1</version>
+                    <scope>runtime</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+
+    <modules>
+        <module>spring</module>
+        <module>tiles</module>
+        <module>clay-plugin</module>
+        <module>core-library</module>
+        <module>test-framework</module>
+        <module>apps</module>
+    </modules>
+
+    <build>
+
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                    <include>**/*.properties</include>
+                    <include>**/*.dtd</include>
+                </includes>
+            </resource>
+        </resources>
+        <testResources>
+            <testResource>
+                <directory>src/test/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                    <include>**/*.properties</include>
+                    <include>**/*.dtd</include>
+                </includes>
+            </testResource>
+        </testResources>
+
+        <pluginManagement>
+            <plugins>
+            <!--
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-surefire-plugin</artifactId>
+               <configuration>
+                  <includes>
+                     <include>**/*TestCase.java</include>
+                  </includes>
+               </configuration>
+            </plugin>
+            -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.4</source>
+                        <target>1.4</target>
+                    </configuration>
+                </plugin>
+            <!--
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-site-plugin</artifactId>
+               <configuration>
+                  <siteDirectory>../src/site</siteDirectory>
+               </configuration>
+            </plugin>
+            -->
+            </plugins>
+        </pluginManagement>
+    </build>
+    
+
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>3.8.1</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>xerces</groupId>
+                <artifactId>xercesImpl</artifactId>
+                <version>2.6.2</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>xerces</groupId>
+                <artifactId>xmlParserAPIs</artifactId>
+                <version>2.6.2</version>
+                <scope>test</scope>
+            </dependency>
+      
+
+      <!-- Needs a different xml-apis jar 
+      <dependency>  (or 2.4.0)
+         <groupId>xerces</groupId>
+         <artifactId>xercesImpl</artifactId>
+         <version>2.7.1</version>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>xml-apis</groupId>
+         <artifactId>xml-apis</artifactId>
+         <version>2.0.2</version>
+         <scope>test</scope>
+      </dependency>
+      -->
+      
+      <!--
+      <dependency>
+         <groupId>xalan</groupId>
+         <artifactId>xalan</artifactId>
+         <version>2.7.0</version>
+         <scope>test</scope>
+      </dependency>
+      -->
+
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.4</version>
+         <!--exclusions>
+            <exclusion>
+               <groupId>servletapi</groupId>
+               <artifactId>servletapi</artifactId>
+            </exclusion>
+         </exclusions-->
+                <scope>provided</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>jsp-api</artifactId>
+                <version>2.0</version>
+                <scope>provided</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-beanutils</groupId>
+                <artifactId>commons-beanutils</artifactId>
+                <version>1.7.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-chain</groupId>
+                <artifactId>commons-chain</artifactId>
+                <version>1.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-collections</groupId>
+                <artifactId>commons-collections</artifactId>
+                <version>3.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-digester</groupId>
+                <artifactId>commons-digester</artifactId>
+                <version>1.6</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.0.4</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-validator</groupId>
+                <artifactId>commons-validator</artifactId>
+                <version>1.3.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>oro</groupId>
+                <artifactId>oro</artifactId>
+                <version>2.0.8</version>
+            </dependency>
+
+            <dependency>
+                <groupId>antlr</groupId>
+                <artifactId>antlr</artifactId>
+                <version>2.7.2</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+
+</project>


Reply via email to