Author: ieb
Date: Fri Sep 5 05:27:41 2008
New Revision: 692421
URL: http://svn.apache.org/viewvc?rev=692421&view=rev
Log:
Creating a space for Sample Implementations of the SPI in social-api
and other API's in Gadgets.
This will generate a jar containing the sample implementations, and ensure
that
we have an insight into any changes that we might make to the SPI coming up
to
the 1.0 release and beyond.
It also might be a place to put alternative implementations of things like
the Cache
implementation inside gadgets, to avoid an excessive number of dependencies
in the main
build. It would be good to have ehcache, Apache JCS and Memcached
implementation, but
this has been resisted at the moment mainly due to the dependencies that
they might
pull.
Samples will not be in the main build but will be activated by a profile.
If anyone thinks that this is not appropriate or the right way to do this,
please shout.
Added:
incubator/shindig/trunk/java/samples/
incubator/shindig/trunk/java/samples/pom.xml
Added: incubator/shindig/trunk/java/samples/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/samples/pom.xml?rev=692421&view=auto
==============================================================================
--- incubator/shindig/trunk/java/samples/pom.xml (added)
+++ incubator/shindig/trunk/java/samples/pom.xml Fri Sep 5 05:27:41 2008
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-parent</artifactId>
+ <version>1-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>shindig-samaples</artifactId>
+ <packaging>jar</packaging>
+
+ <name>Apache Shindig Sample SPI and API Implementations</name>
+ <description>Provides Sample implementations of the SPI and API's inside the
core of Shindig.</description>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/java/samples</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/java/samples</developerConnection>
+
<url>http://svn.apache.org/viewvc/incubator/shindig/trunk/java/samples</url>
+ </scm>
+
+ <dependencies>
+ <!-- project dependencies -->
+ <dependency>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-gadgets</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-social-api</artifactId>
+ </dependency>
+ <!-- external depenencies -->
+ <dependency>
+ <groupId>com.google.code.guice</groupId>
+ <artifactId>guice</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.google-collections</groupId>
+ <artifactId>google-collect</artifactId>
+ </dependency>
+ <dependency>
+ <artifactId>commons-lang</artifactId>
+ <groupId>commons-lang</groupId>
+ </dependency>
+ <dependency>
+ <artifactId>commons-collections</artifactId>
+ <groupId>commons-collections</groupId>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+</project>