You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by dr...@apache.org on 2013/03/29 22:00:34 UTC

svn commit: r1462645 - /river/jtsk/skunk/qa_refactor/trunk/poms/

Author: dreedy
Date: Fri Mar 29 21:00:34 2013
New Revision: 1462645

URL: http://svn.apache.org/r1462645
Log:
Added updated poms and deploy script

Added:
    river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy   (with props)
    river/jtsk/skunk/qa_refactor/trunk/poms/fiddler-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/fiddler.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/jsk-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/jsk-lib.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/jsk-platform.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/jsk-resources.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/mahalo-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/mahalo.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/mercury-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/mercury.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/norm-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/norm.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/outrigger-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/outrigger.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/reggie-dl.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/reggie.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/serviceui.pom
    river/jtsk/skunk/qa_refactor/trunk/poms/start.pom

Added: river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy Fri Mar 29 21:00:34 2013
@@ -0,0 +1,57 @@
+#!/usr/bin/env groovy
+/*
+ * Copyright to the original author or authors.
+ *
+ * Licensed 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.
+ */
+String version = "2.2.1"
+String rootDir = ".."
+        
+["net.jini:jsk-platform":"lib",
+ "net.jini:jsk-lib":"lib",
+ "net.jini:jsk-dl":"lib-dl",
+ "net.jini:jsk-resources":"lib",
+ "net.jini.lookup:serviceui":"lib",
+ "org.apache.river:fiddler":"lib",
+ "org.apache.river:fiddler-dl":"lib-dl",
+ "org.apache.river:mahalo":"lib",
+ "org.apache.river:mahalo-dl":"lib-dl",
+ "org.apache.river:mercury":"lib",
+ "org.apache.river:mercury-dl":"lib-dl",
+ "org.apache.river:norm":"lib",
+ "org.apache.river:norm-dl":"lib-dl",
+ "org.apache.river:outrigger":"lib",
+ "org.apache.river:outrigger-dl":"lib-dl",
+ "org.apache.river:reggie":"lib",
+ "org.apache.river:reggie-dl":"lib-dl",
+ "org.apache.river:start":"lib"].each {artifact, subDir ->
+    
+    String[] parts = artifact.split(":")
+    String gId = parts[0]
+    String aId = parts[1]
+    String dir = rootDir+"/"+subDir
+    String deployCommand = "mvn deploy:deploy-file "+
+                           "-DrepositoryId=apache.releases.https "+
+                           "-Dversion=${version} "+
+                           "-DgeneratePom=false -Dpackaging=jar "+
+                           "-DgroupId=${gId} "+
+                           "-DartifactId=${aId} "+
+                           "-Dfile=${dir}/${aId}.jar "+
+                           "-DpomFile=./${aId}.pom "+
+                           "-Durl=https://repository.apache.org/service/local/staging/deploy/maven2"
+    println deployCommand
+    Process process = deployCommand.execute()
+    process.consumeProcessOutputStream(System.out)
+    process.consumeProcessErrorStream(System.err)
+    process.waitFor()
+}
\ No newline at end of file

Propchange: river/jtsk/skunk/qa_refactor/trunk/poms/deploy_river.groovy
------------------------------------------------------------------------------
    svn:executable = *

Added: river/jtsk/skunk/qa_refactor/trunk/poms/fiddler-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/fiddler-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/fiddler-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/fiddler-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>fiddler-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+	<description>Fiddler service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+	
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+	    <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/fiddler.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/fiddler.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/fiddler.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/fiddler.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>fiddler</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description> Fiddler implementation of the lookup discovery service</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+	
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/jsk-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/jsk-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/jsk-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/jsk-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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>net.jini</groupId>
+    <artifactId>jsk-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>This artifact is the client download (codebase) jar for jsk-lib.</description>
+
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+	
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+	
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/jsk-lib.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/jsk-lib.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/jsk-lib.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/jsk-lib.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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>net.jini</groupId>
+    <artifactId>jsk-lib</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>This artifact contains the River utility APIs that are not tied to a specific service implementation.</description>
+
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-platform</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/jsk-platform.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/jsk-platform.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/jsk-platform.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/jsk-platform.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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>net.jini</groupId>
+    <artifactId>jsk-platform</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Configures specific service providers to be used, such as 
+    PreferredClassProvider, trust and integrity verifiers, and DiscoveryFormatProvider
+    </description>
+
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+	
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+	
+	<dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-resources</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+  
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/jsk-resources.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/jsk-resources.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/jsk-resources.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/jsk-resources.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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>net.jini</groupId>
+    <artifactId>jsk-resources</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description></description>
+
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+  
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/mahalo-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/mahalo-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/mahalo-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/mahalo-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>mahalo-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+	<description>Mahalo Transaction Manager service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+	    <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/mahalo.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/mahalo.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/mahalo.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/mahalo.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>mahalo</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Mahalo Transaction Manager service implementation</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/mercury-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/mercury-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/mercury-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/mercury-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>mercury-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Event mailbox service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/mercury.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/mercury.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/mercury.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/mercury.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>mercury</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Event mailbox service implementation</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/norm-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/norm-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/norm-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/norm-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>norm-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Norm service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+	    <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/norm.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/norm.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/norm.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/norm.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>norm</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Norm implementation of the lease renewal service</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/outrigger-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/outrigger-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/outrigger-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/outrigger-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>outrigger-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Outrigger JavaSpace service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+	    <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/outrigger.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/outrigger.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/outrigger.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/outrigger.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>outrigger</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Outrigger JavaSpace service implementation</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/reggie-dl.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/reggie-dl.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/reggie-dl.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/reggie-dl.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>reggie-dl</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>River Lookup and Registry service client download jar</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-dl</artifactId>
+	    <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/reggie.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/reggie.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/reggie.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/reggie.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>reggie</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>River Lookup and Registry service implementation</description>
+	
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+    <dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-lib</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/serviceui.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/serviceui.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/serviceui.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/serviceui.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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>net.jini.lookup</groupId>
+    <artifactId>serviceui</artifactId>
+    <version>2.2.1</version>
+    <url>http://river.apache.org</url>
+    <description>Service UI attributes and factories</description>
+
+	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+
+	<organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+
+</project>

Added: river/jtsk/skunk/qa_refactor/trunk/poms/start.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa_refactor/trunk/poms/start.pom?rev=1462645&view=auto
==============================================================================
--- river/jtsk/skunk/qa_refactor/trunk/poms/start.pom (added)
+++ river/jtsk/skunk/qa_refactor/trunk/poms/start.pom Fri Mar 29 21:00:34 2013
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed 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.river</groupId>
+    <artifactId>start</artifactId>
+    <url>http://river.apache.org</url>
+    <description>This executable JAR file is the primary entry point for the Service Starter. 
+    It acts as both the class path for the container virtual machine (VM) for the Java platform 
+    that executes non-activatable services, and as the setup VM for activatable services.
+    </description>
+    <version>2.2.1</version>
+
+  	<licenses>
+	    <license>
+	        <name>The Apache Software License, Version 2.0</name>
+	        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+	    </license>
+	</licenses>
+	
+	<dependencies>
+        <dependency>
+            <groupId>net.jini</groupId>
+            <artifactId>jsk-platform</artifactId>
+            <version>2.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file