Title: [753] trunk/core/pom.xml: JBEHAVE-93: Added dependencies to core POM.
Revision
753
Author
mauro
Date
2007-07-11 15:06:28 -0500 (Wed, 11 Jul 2007)

Log Message

JBEHAVE-93:  Added dependencies to core POM.

Modified Paths

Diff

Modified: trunk/core/pom.xml (752 => 753)

--- trunk/core/pom.xml	2007-07-11 19:47:46 UTC (rev 752)
+++ trunk/core/pom.xml	2007-07-11 20:06:28 UTC (rev 753)
@@ -1,79 +1,116 @@
-<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.jbehave</groupId>
-		<artifactId>jbehave-parent</artifactId>
-        <version>1.1-SNAPSHOT</version>
-	</parent>
-	<artifactId>jbehave</artifactId>
-	<packaging>jar</packaging>
-	<name>jBehave Core</name>
+<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.jbehave</groupId>
+    <artifactId>jbehave-parent</artifactId>
+    <version>1.1-SNAPSHOT</version>
+  </parent>
+  <artifactId>jbehave</artifactId>
+  <packaging>jar</packaging>
+  <name>jBehave Core</name>
 
-    <build>
+  <dependencies>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.5</version>
+      <scope>provided</scope>
+    </dependency>  
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <version>1.1.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-cglib</artifactId>
+      <version>1.1.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib-full</artifactId>
+      <version>2.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>proxytoys</groupId>
+      <artifactId>proxytoys</artifactId>
+      <version>0.2.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>provided</scope>
+    </dependency>        
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <version>1.1</version>
+        <executions>
+          <execution>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <!--  Use with snapshot version -->
+                <ant antfile="build.xml" dir="../" target="build-jar" />
+                <copy todir="${project.build.directory}/classes">
+                  <fileset dir="../delete_me/classes" />
+                </copy>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <!-- released profile:  
+        Downloads released version from http://dist.codehaus.org/jbehave.  
+        Requires wget installed on system 
+      -->
+      <id>released</id>
+      <build>
         <plugins>
           <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <version>1.1</version>
-                <executions>
-                    <execution>
-                        <phase>generate-resources</phase>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                        <configuration>
-                            <tasks>
-                                <!--  Use with snapshot version -->
-                                <ant antfile="build.xml" dir="../" target="build-jar"/>
-                                <copy todir="${project.build.directory}/classes">
-                                    <fileset dir="../delete_me/classes"/>
-                                </copy>
-                            </tasks>                                                        
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>    
-        </plugins>            
-    </build>
-  
-    <profiles>
-        <profile>
-            <!-- released profile:  
-                 Downloads released version from http://dist.codehaus.org/jbehave.  
-                 Requires wget installed on system 
-            -->
-            <id>released</id>
-            <build>
-                <plugins>
-                  <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-antrun-plugin</artifactId>
-                    <version>1.1</version>
-                    <executions>
-                      <execution>
-                        <phase>generate-resources</phase>
-                        <goals>
-                          <goal>run</goal>
-                        </goals>
-                        <configuration>
-                          <tasks>
-                            <property name="release.version" value="${pom.version}"/>
-                            <exec executable="wget" newenvironment="false" dir="${basedir}" spawn="false"
-                                    failifexecutionfails="true" failonerror="true">
-                              <arg value="http://dist.codehaus.org/jbehave/${release.version}/jbehave-${release.version}.jar" />  
-                              <arg value="--output-document=../lib/jbehave-${release.version}.jar" />  
-                            </exec>    
-                            <unzip src="" 
-                                  dest="${project.build.directory}/classes" />
-                          </tasks>
-                        </configuration>
-                      </execution>
-                    </executions>
-                  </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.1</version>
+            <executions>
+              <execution>
+                <phase>generate-resources</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <tasks>
+                    <property name="release.version" value="${pom.version}" />
+                    <exec executable="wget" newenvironment="false" dir="${basedir}" spawn="false"
+                      failifexecutionfails="true" failonerror="true">
+                      <arg value="http://dist.codehaus.org/jbehave/${release.version}/jbehave-${release.version}.jar" />
+                      <arg value="--output-document=../lib/jbehave-${release.version}.jar" />
+                    </exec>
+                    <unzip src="" dest="${project.build.directory}/classes" />
+                  </tasks>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to