Author: lindner
Date: Fri Feb 15 18:38:35 2008
New Revision: 628231
URL: http://svn.apache.org/viewvc?rev=628231&view=rev
Log:
Applied Patch for SHINDIG-7, all builds continue to work fine.
Modified:
incubator/shindig/trunk/java/gadgets/pom.xml
Modified: incubator/shindig/trunk/java/gadgets/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/gadgets/pom.xml?rev=628231&r1=628230&r2=628231&view=diff
==============================================================================
--- incubator/shindig/trunk/java/gadgets/pom.xml (original)
+++ incubator/shindig/trunk/java/gadgets/pom.xml Fri Feb 15 18:38:35 2008
@@ -1,11 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+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">
+ <parent>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-parent</artifactId>
+ <version>1-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.shindig</groupId>
<artifactId>gadgets</artifactId>
+ <version>1-SNAPSHOT</version>
<packaging>war</packaging>
+
<name>Shindig Gadget Server</name>
- <version>1.0</version>
+
<url>http://shindig.apache.org</url>
<licenses>
<license>
@@ -13,6 +39,13 @@
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/java/gadgets</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/java/gadgets</developerConnection>
+
<url>http://svn.apache.org/viewvc/incubator/shindig/trunk/java/gadgets</url>
+ </scm>
+
<build>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
@@ -89,24 +122,22 @@
<url>http://google-caja.googlecode.com/svn/maven</url>
</repository>
</repositories>
+
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20070829</version>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.1</version>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -133,11 +164,4 @@
<scope>compile</scope>
</dependency>
</dependencies>
- <distributionManagement>
- <repository>
- <id>apache-repository</id>
- <name>Apache Repository</name>
- <url>scp://people.apache.org/repository/maven2</url>
- </repository>
- </distributionManagement>
</project>