Author: heiko.braun(a)jboss.com
Date: 2010-01-26 11:16:30 -0500 (Tue, 26 Jan 2010)
New Revision: 938
Modified:
bpm-console/trunk/gui/war/pom.xml
bpm-console/trunk/pom.xml
Log:
Cleanup runtime libs
Modified: bpm-console/trunk/gui/war/pom.xml
===================================================================
--- bpm-console/trunk/gui/war/pom.xml 2010-01-26 14:54:44 UTC (rev 937)
+++ bpm-console/trunk/gui/war/pom.xml 2010-01-26 16:16:30 UTC (rev 938)
@@ -17,6 +17,8 @@
<properties>
<gwt-maven.version>2.0-RC1</gwt-maven.version>
<errai.version>1.0-SNAPSHOT</errai.version>
+ <mvel.version>2.0.16-SNAPSHOT</mvel.version>
+ <guice.version>2.0</guice.version>
</properties>
<!-- Dependencies -->
@@ -85,6 +87,24 @@
<version>${gwt.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.mvel</groupId>
+ <artifactId>mvel2</artifactId>
+ <version>${mvel.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.google.code.guice</groupId>
+ <artifactId>guice</artifactId>
+ <version>${guice.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.guice</groupId>
+ <artifactId>guice</artifactId>
+ <version>${guice.version}</version>
+ <classifier>aopalliance</classifier>
+ </dependency>
+
<!-- GWT extensions -->
<!-- Mosaic -->
@@ -266,8 +286,8 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.5</source>
+ <target>1.5</target>
</configuration>
</plugin>
@@ -320,6 +340,21 @@
<version>${version}</version>
<scope>provided</scope>
</dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <scope>provided</scope>
+ <version>1.5.10</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <scope>provided</scope>
+ <version>1.5.10</version>
+ </dependency>
+
</dependencies>
<properties>
<console.app.webcontext>jbpm-console</console.app.webcontext>
Modified: bpm-console/trunk/pom.xml
===================================================================
--- bpm-console/trunk/pom.xml 2010-01-26 14:54:44 UTC (rev 937)
+++ bpm-console/trunk/pom.xml 2010-01-26 16:16:30 UTC (rev 938)
@@ -57,8 +57,7 @@
<errai.version>1.0-SNAPSHOT</errai.version>
</properties>
- <modules>
- <module>workspace</module>
+ <modules>
<module>server</module>
<module>gui</module>
<module>shared</module>