- Revision
- 1311
- Author
- mauro
- Date
- 2009-10-11 04:52:58 -0500 (Sun, 11 Oct 2009)
Log Message
Added POMs and xsite-resources to jbehave-site-resources.
Added Paths
Diff
Added: trunk/site/pom.xml (0 => 1311)
--- trunk/site/pom.xml (rev 0) +++ trunk/site/pom.xml 2009-10-11 09:52:58 UTC (rev 1311) @@ -0,0 +1,87 @@ +<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> + <groupId>org.jbehave.site</groupId> + <artifactId>jbehave-site</artifactId> + <version>2.3-SNAPSHOT</version> + <packaging>pom</packaging> + <name>JBehave Site</name> + <description>JBehave Site provide site resources and templates for use by JBehave documentations and distributions</description> + + <modules> + <module>site-resources</module> + <module>site-templates</module> + </modules> + + <build> + <resources> + <resource> + <directory>${basedir}/src/main/resources</directory> + <filtering>false</filtering> + </resource> + </resources> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-webdav</artifactId> + <version>1.0-beta-2</version> + </extension> + </extensions> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>2.3</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-9</version> + <configuration> + <autoVersionSubmodules>true</autoVersionSubmodules> + <preparationGoals>clean install</preparationGoals> + <goals>deploy</goals> + <tagBase>https://svn.codehaus.org/jbehave/tags</tagBase> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <licenses> + <license> + <name>BSD license</name> + <url>https://svn.codehaus.org/jbehave/trunk/LICENSE.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <developers /> + <contributors /> + + <scm> + <connection>scm:svn:https://svn.codehaus.org/jbehave/trunk/site</connection> + <developerConnection>scm:svn:https://svn.codehaus.org/jbehave/trunk/site</developerConnection> + <url>http://svn.codehaus.org/jbehave/trunk/site</url> + </scm> + + <distributionManagement> + <!-- + The id used must match a server id defined in ~/.m2/settings.xml + --> + <repository> + <id>codehaus.org</id> + <name>Codehaus JBehave Repository</name> + <url>dav:https://dav.codehaus.org/repository/jbehave/</url> + </repository> + <snapshotRepository> + <id>codehaus.org</id> + <name>Codehaus JBehave Snapshot Repository</name> + <url>dav:https://dav.codehaus.org/snapshots.repository/jbehave/</url> + </snapshotRepository> + </distributionManagement> +</project>
Added: trunk/site/site-resources/pom.xml (0 => 1311)
--- trunk/site/site-resources/pom.xml (rev 0) +++ trunk/site/site-resources/pom.xml 2009-10-11 09:52:58 UTC (rev 1311) @@ -0,0 +1,42 @@ +<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.site</groupId> + <artifactId>jbehave-site</artifactId> + <version>2.3-SNAPSHOT</version> + </parent> + <artifactId>jbehave-site-resources</artifactId> + <packaging>jar</packaging> + <name>JBehave Site Resources</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>unpack-xsite-resources</id> + <phase>install</phase> + <goals> + <goal>unpack</goal> + </goals> + <configuration> + <overWriteReleases>false</overWriteReleases> + <overWriteSnapshots>true</overWriteSnapshots> + <artifactItems> + <artifactItem> + <groupId>org.codehaus.xsite</groupId> + <artifactId>xsite-resources</artifactId> + <version>1.1</version> + <outputDirectory>${project.build.outputDirectory}</outputDirectory> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project>
Added: trunk/site/site-templates/pom.xml (0 => 1311)
--- trunk/site/site-templates/pom.xml (rev 0) +++ trunk/site/site-templates/pom.xml 2009-10-11 09:52:58 UTC (rev 1311) @@ -0,0 +1,12 @@ +<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.site</groupId> + <artifactId>jbehave-site</artifactId> + <version>2.3-SNAPSHOT</version> + </parent> + <artifactId>jbehave-site-templates</artifactId> + <packaging>jar</packaging> + <name>JBehave Site Templates</name> + +</project>
To unsubscribe from this list please visit:
