[jboss-svn-commits] JBL Code SVN: r31450 - labs/jbosslabs/labs-3.0-build/integration/cs-hfurl-links/trunk.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Feb 5 07:49:09 EST 2010
Author: lkrzyzanek
Date: 2010-02-05 07:49:09 -0500 (Fri, 05 Feb 2010)
New Revision: 31450
Modified:
labs/jbosslabs/labs-3.0-build/integration/cs-hfurl-links/trunk/pom.xml
Log:
Changed to work with SBS 4.x
Modified: labs/jbosslabs/labs-3.0-build/integration/cs-hfurl-links/trunk/pom.xml
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-hfurl-links/trunk/pom.xml 2010-02-05 12:48:16 UTC (rev 31449)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-hfurl-links/trunk/pom.xml 2010-02-05 12:49:09 UTC (rev 31450)
@@ -3,11 +3,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.labs.clearspace.plugin</groupId>
+ <groupId>org.jboss.labs.sbs.plugin</groupId>
<artifactId>human-friendly-urls-links</artifactId>
- <name>Extension of Clearspace plugin Human friendly URLs</name>
+ <name>Extension of SBS plugin Human friendly URLs</name>
<description>Extension that override functionality of Struts2 URL tag and use implementation of spring managed bean that ovveride Struts2 URL Component</description>
- <version>1.0.0</version>
+ <version>2.0.0</version>
<parent>
<groupId>org.jboss.labs</groupId>
@@ -21,8 +21,8 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>1.6</source>
+ <target>1.6</target>
</configuration>
</plugin>
</plugins>
@@ -37,44 +37,27 @@
</dependency>
<dependency>
- <groupId>com.jivesoftware</groupId>
- <artifactId>clearspace-all</artifactId>
- <version>2.5.0.rc</version>
- <type>pom</type>
- <scope>provided</scope>
+ <groupId>com.jivesoftware</groupId>
+ <artifactId>jive-sbs-employee-all</artifactId> <!-- was clearspacex-all -->
+ <version>${sbs.version}</version>
+ <type>pom</type>
+ <scope>provided</scope>
</dependency>
-
- <!-- Spring context is transient dependency in version 1.x and should be at least 2.5 -->
<dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>[2.5,)</version>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <type>jar</type>
<scope>provided</scope>
- </dependency>
+ </dependency>
</dependencies>
- <pluginRepositories>
- <pluginRepository>
- <id>jive.ext.central</id>
- <name>Jive Repository</name>
- <url>http://maven.jivesoftware.com/archiva/repository/jive.internal/</url>
- </pluginRepository>
- <pluginRepository>
- <id>jive.ext.snapshots</id>
- <name>Jive Snapshot Repository</name>
- <url>http://maven.jivesoftware.com/archiva/repository/jive.snapshots/</url>
- </pluginRepository>
- </pluginRepositories>
- <repositories>
- <repository>
- <id>jive.ext.central</id>
- <name>Jive Repository</name>
- <url>http://maven.jivesoftware.com/archiva/repository/jive.internal/</url>
- </repository>
- <repository>
- <id>jive.ext.snapshots</id>
- <name>Jive Snapshot Repository</name>
- <url>http://maven.jivesoftware.com/archiva/repository/jive.snapshots/</url>
- </repository>
- </repositories>
+ <!--
+ This is where you set the Jive SBS version your plugin is compiled
+ against.
+ -->
+ <properties>
+ <sbs.version>4.0.3</sbs.version>
+ </properties>
+
</project>
More information about the jboss-svn-commits
mailing list