Author: lindner
Date: Sat Feb 16 06:41:14 2008
New Revision: 628309
URL: http://svn.apache.org/viewvc?rev=628309&view=rev
Log:
Apply patch from SHINDIG-74 from Vincent Siveton
Modified:
incubator/shindig/trunk/java/gadgets/pom.xml
incubator/shindig/trunk/pom.xml
Modified: incubator/shindig/trunk/java/gadgets/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/gadgets/pom.xml?rev=628309&r1=628308&r2=628309&view=diff
==============================================================================
--- incubator/shindig/trunk/java/gadgets/pom.xml (original)
+++ incubator/shindig/trunk/java/gadgets/pom.xml Sat Feb 16 06:41:14 2008
@@ -29,16 +29,10 @@
<artifactId>gadgets</artifactId>
<version>1-SNAPSHOT</version>
<packaging>war</packaging>
-
- <name>Shindig Java Gadget Server</name>
-
- <url>http://shindig.apache.org</url>
- <licenses>
- <license>
- <name>Apache 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
+ <name>Apache Shindig Java Gadget Server</name>
+ <description>
+ Server part of Shindig for hosting OpenSocial applications.
+ </description>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/java/gadgets</connection>
Modified: incubator/shindig/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/pom.xml?rev=628309&r1=628308&r2=628309&view=diff
==============================================================================
--- incubator/shindig/trunk/pom.xml (original)
+++ incubator/shindig/trunk/pom.xml Sat Feb 16 06:41:14 2008
@@ -17,19 +17,21 @@
* specific language governing permissions and limitations
* under the License.
-->
-<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">
-
+<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.apache.shindig</groupId>
+ <artifactId>shindig-parent</artifactId>
+ <version>1-SNAPSHOT</version>
+ <relativePath>pom/parent/pom.xml</relativePath>
+ </parent>
+
<groupId>org.apache.shindig</groupId>
<artifactId>shindig-project</artifactId>
<version>1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Shindig Project</name>
- <url>http://incubator.apache.org/shindig/</url>
<description>
Shindig is a JavaScript container and implementations of the
backend APIs and proxy required for hosting OpenSocial
@@ -46,12 +48,11 @@
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
-
</activation>
<modules>
+ <module>pom/parent</module>
<module>java/gadgets</module>
</modules>
-
</profile>
<!-- profile to build java/gadgets -->
@@ -61,6 +62,11 @@
<module>java/gadgets</module>
</modules>
</profile>
-
</profiles>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/</developerConnection>
+ <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/</url>
+ </scm>
</project>