Title: [waffle-scm] [80] trunk: Introduced acceptance profile.
Revision
80
Author
mauro
Date
2007-05-24 05:10:25 -0500 (Thu, 24 May 2007)

Log Message

Introduced acceptance profile.  Made all taglib dependencies transitive.
Added eclipse project files to svn.  

Modified Paths

Added Paths

Diff

Added: trunk/.classpath (0 => 80)

--- trunk/.classpath	                        (rev 0)
+++ trunk/.classpath	2007-05-24 10:10:25 UTC (rev 80)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+  <classpathentry kind="src" path="core/src/main/java" />
+  <classpathentry kind="src" path="core/src/test/java" />
+  <classpathentry kind="src" path="extensions/taglib/src/main/java" />
+  <classpathentry kind="src" path="extensions/taglib-acceptance/src/main/java" />
+  <classpathentry kind="src" path="extensions/taglib-acceptance/src/test/java" />
+  <classpathentry kind="src" path="extensions/webcontainer/src/main/java" />
+  <classpathentry kind="src" path="extensions/webcontainer/src/test/java" />
+  <classpathentry kind="src" path="examples/freemarker-example/src/main/java" />
+  <classpathentry kind="src" path="examples/jruby-example/src/main/java" />
+  <classpathentry kind="src" path="examples/migration-example/src/main/java" />
+  <classpathentry kind="src" path="examples/paranamer-example/src/main/java" />
+  <classpathentry kind="src" path="examples/simple-example/src/main/java" />
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER" />
+  <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER" />
+  <!-- These following deps are as well since the M2 container only picks up deps in the default profile -->
+  <classpathentry kind="var" path="M2_REPO/org/apache/struts/struts-core/1.3.5/struts-core-1.3.5.jar" />
+  <classpathentry kind="var" path="M2_REPO/org/openqa/selenium/client-drivers/selenium-java-client-driver/0.9.2-SNAPSHOT/selenium-java-client-driver-0.9.2-SNAPSHOT.jar"/>
+  <classpathentry kind="output" path="target/classes" />
+</classpath>

Added: trunk/.project (0 => 80)

--- trunk/.project	                        (rev 0)
+++ trunk/.project	2007-05-24 10:10:25 UTC (rev 80)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>waffle</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Modified: trunk/extensions/taglib/pom.xml (79 => 80)

--- trunk/extensions/taglib/pom.xml	2007-05-24 09:54:32 UTC (rev 79)
+++ trunk/extensions/taglib/pom.xml	2007-05-24 10:10:25 UTC (rev 80)
@@ -1,35 +1,37 @@
 <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.codehaus.waffle</groupId>
-        <artifactId>waffle-parent</artifactId>
-        <version>1.0-SNAPSHOT</version>
-    </parent>
-    <packaging>jar</packaging>
-    <artifactId>waffle-taglib</artifactId>
-    <name>Waffle Taglib</name>
+  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.codehaus.waffle</groupId>
+    <artifactId>waffle-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <packaging>jar</packaging>
+  <artifactId>waffle-taglib</artifactId>
+  <name>Waffle Taglib</name>
 
-    <dependencies>
-        <dependency>
-            <groupId>${pom.groupId}</groupId>
-            <artifactId>waffle</artifactId>
-            <version>${pom.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>jsp-api</artifactId>
-            <scope>compile</scope>
-            <version>2.0</version>
-        </dependency>
-        <dependency>
-          <groupId>taglibs</groupId>
-          <artifactId>standard</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>jstl</artifactId>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>waffle</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>jsp-api</artifactId>
+      <scope>compile</scope>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>jstl</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>taglibs</groupId>
+      <artifactId>standard</artifactId>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
 
 </project>

Modified: trunk/extensions/taglib-acceptance/pom.xml (79 => 80)

--- trunk/extensions/taglib-acceptance/pom.xml	2007-05-24 09:54:32 UTC (rev 79)
+++ trunk/extensions/taglib-acceptance/pom.xml	2007-05-24 10:10:25 UTC (rev 80)
@@ -13,31 +13,10 @@
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
-      <artifactId>waffle</artifactId>
-      <version>${pom.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${pom.groupId}</groupId>
       <artifactId>waffle-taglib</artifactId>
       <version>${pom.version}</version>
     </dependency>
     <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>jsp-api</artifactId>
-      <scope>compile</scope>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>jstl</artifactId>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
-      <groupId>taglibs</groupId>
-      <artifactId>standard</artifactId>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Modified: trunk/pom.xml (79 => 80)

--- trunk/pom.xml	2007-05-24 09:54:32 UTC (rev 79)
+++ trunk/pom.xml	2007-05-24 10:10:25 UTC (rev 80)
@@ -17,7 +17,6 @@
     <module>core</module>
     <module>extensions/webcontainer</module>
     <module>extensions/taglib</module>
-    <module>extensions/taglib-acceptance</module>
   </modules>
 
   <dependencyManagement>
@@ -207,6 +206,13 @@
       </properties>
     </profile>
     <profile>
+      <!-- Acceptance profile -->
+      <id>acceptance</id>
+      <modules>
+        <module>extensions/taglib-acceptance</module>
+      </modules>
+    </profile>
+    <profile>
       <!-- Distribution profile -->
       <id>dist</id>
       <modules>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to