You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by li...@apache.org on 2008/02/16 08:36:37 UTC

svn commit: r628246 - in /incubator/shindig/trunk: java/gadgets/pom.xml pom.xml pom/parent/pom.xml

Author: lindner
Date: Fri Feb 15 23:36:36 2008
New Revision: 628246

URL: http://svn.apache.org/viewvc?rev=628246&view=rev
Log:
SHINDIG-6 -- more cleanups, one can just type mvn at the top level to build

Added:
    incubator/shindig/trunk/pom.xml
Modified:
    incubator/shindig/trunk/java/gadgets/pom.xml
    incubator/shindig/trunk/pom/parent/pom.xml

Modified: incubator/shindig/trunk/java/gadgets/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/java/gadgets/pom.xml?rev=628246&r1=628245&r2=628246&view=diff
==============================================================================
--- incubator/shindig/trunk/java/gadgets/pom.xml (original)
+++ incubator/shindig/trunk/java/gadgets/pom.xml Fri Feb 15 23:36:36 2008
@@ -30,7 +30,7 @@
   <version>1-SNAPSHOT</version>
   <packaging>war</packaging>
 
-  <name>Shindig Gadget Server</name>
+  <name>Shindig Java Gadget Server</name>
 
   <url>http://shindig.apache.org</url>
   <licenses>

Added: incubator/shindig/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/pom.xml?rev=628246&view=auto
==============================================================================
--- incubator/shindig/trunk/pom.xml (added)
+++ incubator/shindig/trunk/pom.xml Fri Feb 15 23:36:36 2008
@@ -0,0 +1,66 @@
+<?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>
+    <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
+      applications.
+    </description>
+
+    <build>
+        <defaultGoal>install</defaultGoal>
+    </build>
+
+    <profiles>
+        <!-- default profile that builds everything -->
+        <profile>
+            <id>all</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+
+            </activation>
+            <modules>
+                <module>java/gadgets</module>
+            </modules>
+
+        </profile>
+
+        <!-- profile to build java/gadgets -->
+        <profile>
+            <id>java/gadgets</id>
+            <modules>
+                <module>java/gadgets</module>
+            </modules>
+        </profile>
+
+    </profiles>
+</project>

Modified: incubator/shindig/trunk/pom/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/pom/parent/pom.xml?rev=628246&r1=628245&r2=628246&view=diff
==============================================================================
--- incubator/shindig/trunk/pom/parent/pom.xml (original)
+++ incubator/shindig/trunk/pom/parent/pom.xml Fri Feb 15 23:36:36 2008
@@ -32,7 +32,7 @@
   <packaging>pom</packaging>
 
   <name>Apache Shindig Project Parent</name>
-  <description>Shindig will develop a JavaScript container and implementations of the backend APIs and proxy required for hosting OpenSocial applications.</description>
+  <description>Parent POM defining settings that can be used across Shindig</description>
   <url>http://incubator.apache.org/shindig</url>
   <inceptionYear>2007</inceptionYear>
 
@@ -52,9 +52,9 @@
   </issueManagement>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/pom</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/pom</developerConnection>
-    <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/pom</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/pom/parent</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/pom/parent</developerConnection>
+    <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/pom/parent</url>
   </scm>
 
   <distributionManagement>
@@ -109,6 +109,8 @@
           <configuration>
             <source>1.5</source>
             <target>1.5</target>
+            <showDeprecation>true</showDeprecation>
+            <compilerArgument>-Xlint:unchecked,deprecation,fallthrough,finally</compilerArgument>
           </configuration>
         </plugin>
         <plugin>



Re: svn commit: r628246 - in /incubator/shindig/trunk: java/gadgets/pom.xml pom.xml pom/parent/pom.xml

Posted by Vincent Siveton <vi...@gmail.com>.
Hi Paul,

2008/2/16, lindner@apache.org <li...@apache.org>:
> Author: lindner
> Date: Fri Feb 15 23:36:36 2008
> New Revision: 628246
>
> URL: http://svn.apache.org/viewvc?rev=628246&view=rev
> Log:
> SHINDIG-6 -- more cleanups, one can just type mvn at the top level to build

Not quite IMHO. See SHINDIG-74

Cheers,

Vincent

[SNIP]