1 <?xml version="1.0" encoding="UTF-8"?><!--
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
19 <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">
20 <modelVersion>4.0.0</modelVersion>
23 <groupId>org.apache.shindig</groupId>
24 <artifactId>shindig-parent</artifactId>
25 <version>1.1-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
29 <artifactId>shindig-gadgets</artifactId>
30 <packaging>jar</packaging>
32 <name>Apache Shindig Gadget Renderer</name>
33 <description>Renders gadgets, provides the gadget metadata service, and serves
34 all javascript required by the OpenSocial specification.</description>
37 <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/java/gadgets</connection>
38 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/java/gadgets</developerConnection>
39 <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/java/gadgets</url>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-war-plugin</artifactId>
50 <!-- this is relative to the pom.xml directory -->
51 <directory>${basedir}/../../javascript/</directory>
52 <targetPath>files</targetPath>
54 <include>**/*.*</include>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-compiler-plugin</artifactId>
67 <!-- duplicated here for the jar build. -->
68 <!-- TODO: Eliminate duplicate copies in WAR output -->
69 <!-- this is relative to the pom.xml directory -->
70 <directory>${basedir}/../../javascript/</directory>
71 <targetPath>files</targetPath>
73 <include>**/*.*</include>
77 <targetPath>config</targetPath>
78 <directory>${basedir}/../../config</directory>
80 <include>oauth.json</include>
87 <!-- project dependencies -->
89 <groupId>org.apache.shindig</groupId>
90 <artifactId>shindig-common</artifactId>
93 <groupId>org.apache.shindig</groupId>
94 <artifactId>shindig-common</artifactId>
100 external dependencies
101 where the depedency version is defined in dependency Management,
102 there is no need for the version, and it should not be put in
103 so we have a single place to change the version
106 <groupId>org.json</groupId>
107 <artifactId>json</artifactId>
110 <groupId>caja</groupId>
111 <artifactId>caja</artifactId>
114 <groupId>caja</groupId>
115 <artifactId>json_simple</artifactId>
118 <groupId>net.oauth</groupId>
119 <artifactId>oauth-core</artifactId>
122 <groupId>com.google.collections</groupId>
123 <artifactId>google-collections</artifactId>
126 <groupId>com.google.code.guice</groupId>
127 <artifactId>guice</artifactId>
130 <groupId>commons-lang</groupId>
131 <artifactId>commons-lang</artifactId>
134 <groupId>rome</groupId>
135 <artifactId>rome</artifactId>
138 <groupId>com.ibm.icu</groupId>
139 <artifactId>icu4j</artifactId>
142 <groupId>net.sourceforge.nekohtml</groupId>
143 <artifactId>nekohtml</artifactId>
146 <groupId>net.sourceforge.nekohtml</groupId>
147 <artifactId>nekohtml</artifactId>
150 <groupId>xerces</groupId>
151 <artifactId>xercesImpl</artifactId>
154 <groupId>org.apache.sanselan</groupId>
155 <artifactId>sanselan</artifactId>
160 <groupId>org.mortbay.jetty</groupId>
161 <artifactId>jetty</artifactId>
165 <groupId>org.apache.shindig</groupId>
166 <artifactId>shindig-common</artifactId>
167 <type>test-jar</type>