Author: heiko.braun(a)jboss.com
Date: 2009-02-03 08:19:30 -0500 (Tue, 03 Feb 2009)
New Revision: 3750
Modified:
jbpm4/trunk/modules/examples/pom.xml
jbpm4/trunk/modules/pvm/pom.xml
jbpm4/trunk/pom.xml
Log:
Added report profile for site generation. Fine tune depenencies.
Modified: jbpm4/trunk/modules/examples/pom.xml
===================================================================
--- jbpm4/trunk/modules/examples/pom.xml 2009-02-03 11:38:52 UTC (rev 3749)
+++ jbpm4/trunk/modules/examples/pom.xml 2009-02-03 13:19:30 UTC (rev 3750)
@@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>jbpm-jpdl</artifactId>
+ <artifactId>jbpm-api</artifactId>
<version>${version}</version>
</dependency>
<dependency>
@@ -37,11 +37,23 @@
<artifactId>jbpm-test-base</artifactId>
<version>${version}</version>
</dependency>
+ <dependency>
+ <groupId>org.jbpm.jbpm4</groupId>
+ <artifactId>jbpm-jpdl</artifactId>
+ <version>${version}</version>
+ <scope>test</scope>
+ <!--exclusions> TODO: Re-enable when JBPM-1997 is done.
+ <exclusion>
+ <artifactId>org.jbpm.jbpm4</artifactId>
+ <groupId>jbpm-pvm</groupId>
+ </exclusion>
+ </exclusions-->
+ </dependency>
</dependencies>
<build>
<plugins>
- <plugin>
+ <plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/trunk/modules/pvm/pom.xml 2009-02-03 11:38:52 UTC (rev 3749)
+++ jbpm4/trunk/modules/pvm/pom.xml 2009-02-03 13:19:30 UTC (rev 3750)
@@ -68,14 +68,17 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.livetribe</groupId>
@@ -84,10 +87,12 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
</dependency>
</dependencies>
Modified: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml 2009-02-03 11:38:52 UTC (rev 3749)
+++ jbpm4/trunk/pom.xml 2009-02-03 13:19:30 UTC (rev 3750)
@@ -14,6 +14,7 @@
<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>
<name>jBPM 4</name>
@@ -36,10 +37,10 @@
<module>modules/examples</module>
<module>modules/jpdl</module>
<module>modules/task</module>
- <!--module>modules/enterprise</module-->
+ <module>modules/enterprise</module>
<module>modules/test-base</module>
<module>modules/test-db</module>
- <!--module>modules/test-pojo</module-->
+ <module>modules/test-pojo</module>
</modules>
<!-- Properties -->
@@ -271,6 +272,7 @@
</execution>
</executions>
</plugin>
+
</plugins>
<!-- PluginManagement -->
@@ -493,6 +495,42 @@
</repository>
</repositories>
</profile>
+
+ <profile>
+ <id>report</id>
+ <!-- Report Customization 'mvn site:site'-->
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.0.1</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ <report>summary</report>
+ <report>issue-tracking</report>
+ <report>mailing-list</report>
+ <report>scm</report>
+ <report>project-team</report>
+ <report>license</report>
+ <report>javadoc</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+ </profile>
</profiles>
<!-- Repositories -->
@@ -573,6 +611,11 @@
<name>JBoss Snapshot Repository</name>
<
url>dav:https://snapshots.jboss.org/maven2</url>
</snapshotRepository>
+ <site>
+ <id>qabox</id>
+ <name>jbpm.dyndns.org</name>
+ <url>scpexe://hudson@jbpm.dyndns.org/var/www/html/jbpm4/</url>
+ </site>
</distributionManagement>
</project>