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 2015/09/15 20:11:59 UTC

svn commit: r1703268 - in /river/jtsk/skunk/qa-refactor-namespace/trunk/poms: browser.pom deploy_river.groovy install_river.groovy

Author: dreedy
Date: Tue Sep 15 18:11:59 2015
New Revision: 1703268

URL: http://svn.apache.org/r1703268
Log:
Added pom for the browser

Added:
    river/jtsk/skunk/qa-refactor-namespace/trunk/poms/browser.pom
Modified:
    river/jtsk/skunk/qa-refactor-namespace/trunk/poms/deploy_river.groovy
    river/jtsk/skunk/qa-refactor-namespace/trunk/poms/install_river.groovy

Added: river/jtsk/skunk/qa-refactor-namespace/trunk/poms/browser.pom
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa-refactor-namespace/trunk/poms/browser.pom?rev=1703268&view=auto
==============================================================================
--- river/jtsk/skunk/qa-refactor-namespace/trunk/poms/browser.pom (added)
+++ river/jtsk/skunk/qa-refactor-namespace/trunk/poms/browser.pom Tue Sep 15 18:11:59 2015
@@ -0,0 +1,54 @@
+<?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>tools</artifactId>
+    <version>3.0</version>
+    <url>http://river.apache.org</url>
+    <description>A service browser
+    </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>3.0</version>
+        </dependency>
+        <dependency>
+            <groupId>net.jini.lookup</groupId>
+            <artifactId>serviceui</artifactId>
+            <version>3.0</version>
+        </dependency>		
+
+    </dependencies>
+  
+</project>

Modified: river/jtsk/skunk/qa-refactor-namespace/trunk/poms/deploy_river.groovy
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa-refactor-namespace/trunk/poms/deploy_river.groovy?rev=1703268&r1=1703267&r2=1703268&view=diff
==============================================================================
--- river/jtsk/skunk/qa-refactor-namespace/trunk/poms/deploy_river.groovy (original)
+++ river/jtsk/skunk/qa-refactor-namespace/trunk/poms/deploy_river.groovy Tue Sep 15 18:11:59 2015
@@ -97,7 +97,8 @@ String passphrase="Insert passphrase her
  "org.apache.river:outrigger-dl":"lib-dl",
  "org.apache.river:reggie":"lib",
  "org.apache.river:reggie-dl":"lib-dl",
- "org.apache.river:start":"lib"
+ "org.apache.river:start":"lib",
+ "org.apache.river:browser":"lib",
  "org.apache.river:tools":"lib"
 ].each {artifact, subDir ->
     

Modified: river/jtsk/skunk/qa-refactor-namespace/trunk/poms/install_river.groovy
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/qa-refactor-namespace/trunk/poms/install_river.groovy?rev=1703268&r1=1703267&r2=1703268&view=diff
==============================================================================
--- river/jtsk/skunk/qa-refactor-namespace/trunk/poms/install_river.groovy (original)
+++ river/jtsk/skunk/qa-refactor-namespace/trunk/poms/install_river.groovy Tue Sep 15 18:11:59 2015
@@ -36,6 +36,7 @@ String rootDir = ".."
  "org.apache.river:reggie":"lib",
  "org.apache.river:reggie-dl":"lib-dl",
  "org.apache.river:start":"lib",
+ "org.apache.river:browser":"lib",
  "org.apache.river:tools":"lib"].each {artifact, subDir ->
     
     String[] parts = artifact.split(":")