You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2013/12/21 20:50:50 UTC

svn commit: r1552937 - /juddi/trunk/juddi-gui-dsig/pom.xml

Author: alexoree
Date: Sat Dec 21 19:50:50 2013
New Revision: 1552937

URL: http://svn.apache.org/r1552937
Log:
JUDDI-653 fixed

Modified:
    juddi/trunk/juddi-gui-dsig/pom.xml

Modified: juddi/trunk/juddi-gui-dsig/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/pom.xml?rev=1552937&r1=1552936&r2=1552937&view=diff
==============================================================================
--- juddi/trunk/juddi-gui-dsig/pom.xml (original)
+++ juddi/trunk/juddi-gui-dsig/pom.xml Sat Dec 21 19:50:50 2013
@@ -67,7 +67,25 @@ language governing permissions and * lim
             <artifactId>juddi-client</artifactId>
             <version>${project.parent.version}</version>
         </dependency>
-        <dependency>
+        <!--<dependency>
+            <groupId>com.sun.jdk</groupId>
+            <artifactId>plugin</artifactId>
+            <version>1.6.0</version>
+            <type>jar</type>
+            <scope>system</scope>
+            <systemPath>${java.home}/lib/plugin.jar</systemPath>
+        </dependency>-->
+    </dependencies>
+ <profiles>
+
+    <!-- finagling to deal with plugin.jar not being bundled with OpenJDK -->
+    <profile>
+      <id>standard-jdk</id>
+      <activation>
+        <file><exists>${java.home}/lib/plugin.jar</exists></file>
+      </activation>
+	<dependencies>
+         <dependency>
             <groupId>com.sun.jdk</groupId>
             <artifactId>plugin</artifactId>
             <version>1.6.0</version>
@@ -76,4 +94,22 @@ language governing permissions and * lim
             <systemPath>${java.home}/lib/plugin.jar</systemPath>
         </dependency>
     </dependencies>
+    </profile>
+    <profile>
+      <id>icedtea-web</id>
+      <activation>
+        <file><exists>/usr/share/icedtea-web/plugin.jar</exists></file>
+      </activation>
+	<dependencies>
+	 <dependency>
+            <groupId>com.sun.jdk</groupId>
+            <artifactId>plugin</artifactId>
+            <version>1.6.0</version>
+            <type>jar</type>
+            <scope>system</scope>
+            <systemPath>/usr/share/icedtea-web/plugin.jar</systemPath>
+        </dependency>
+	</dependencies>
+    </profile>
+  </profiles>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org