You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2013/05/21 06:08:16 UTC

svn commit: r1484657 - in /juddi/trunk: ./ juddi-gui-dsig/ juddi-gui-dsig/nbproject/ juddi-gui-dsig/src/main/ juddi-gui-dsig/src/main/java/ juddi-gui-dsig/src/main/java/org/ juddi-gui-dsig/src/main/keystore/ juddi-gui-dsig/src/org/

Author: kstam
Date: Tue May 21 04:08:16 2013
New Revision: 1484657

URL: http://svn.apache.org/r1484657
Log:
JUDDI-613, adding the signed applet to the build

Added:
    juddi/trunk/juddi-gui-dsig/keystore.sh   (with props)
    juddi/trunk/juddi-gui-dsig/pom.xml
    juddi/trunk/juddi-gui-dsig/src/main/
    juddi/trunk/juddi-gui-dsig/src/main/java/
    juddi/trunk/juddi-gui-dsig/src/main/java/org/
      - copied from r1484162, juddi/trunk/juddi-gui-dsig/src/org/
    juddi/trunk/juddi-gui-dsig/src/main/keystore/
    juddi/trunk/juddi-gui-dsig/src/main/keystore/signing-jar.keystore   (with props)
Removed:
    juddi/trunk/juddi-gui-dsig/build.xml
    juddi/trunk/juddi-gui-dsig/nbproject/
    juddi/trunk/juddi-gui-dsig/src/org/
Modified:
    juddi/trunk/juddi-gui-dsig/   (props changed)
    juddi/trunk/pom.xml

Propchange: juddi/trunk/juddi-gui-dsig/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Tue May 21 04:08:16 2013
@@ -1,2 +1,6 @@
 build
 dist
+.settings
+.classpath
+.project
+target

Added: juddi/trunk/juddi-gui-dsig/keystore.sh
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/keystore.sh?rev=1484657&view=auto
==============================================================================
--- juddi/trunk/juddi-gui-dsig/keystore.sh (added)
+++ juddi/trunk/juddi-gui-dsig/keystore.sh Tue May 21 04:08:16 2013
@@ -0,0 +1,4 @@
+#!/bin/sh
+KEYSTORE=src/main/keystore/signing-jar.keystore
+keytool -genkey -alias applet -keystore $KEYSTORE -storepass applet -keypass applet -dname "CN=developer, OU=group 3, O=com.example, L=Somewhere, ST=Germany, C=DE"
+keytool -selfcert -alias applet -keystore $KEYSTORE -storepass applet -keypass applet

Propchange: juddi/trunk/juddi-gui-dsig/keystore.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: juddi/trunk/juddi-gui-dsig/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/pom.xml?rev=1484657&view=auto
==============================================================================
--- juddi/trunk/juddi-gui-dsig/pom.xml (added)
+++ juddi/trunk/juddi-gui-dsig/pom.xml Tue May 21 04:08:16 2013
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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>
+  <parent>
+    <groupId>org.apache.juddi</groupId>
+    <artifactId>juddi-parent</artifactId>
+    <version>3.2.0-SNAPSHOT</version>
+  </parent> 
+  <artifactId>juddi-gui-dsig</artifactId>
+  <name>jUDDI Client side Code</name>
+
+  <build>
+    <finalName>${artifactId}-${version}</finalName>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jarsigner-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>sign</goal>
+            </goals>
+            <phase>package</phase>
+            <configuration>
+              <keystore>src/main/keystore/signing-jar.keystore</keystore>
+              <alias>applet</alias>
+              <storepass>applet</storepass>
+              <keypass>applet</keypass>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <dependencies>
+    <dependency>
+        <groupId>org.apache.juddi</groupId>
+        <artifactId>juddi-client</artifactId>
+        <version>${project.parent.version}</version>
+     </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> 
+</project>

Added: juddi/trunk/juddi-gui-dsig/src/main/keystore/signing-jar.keystore
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/src/main/keystore/signing-jar.keystore?rev=1484657&view=auto
==============================================================================
Binary file - no diff available.

Propchange: juddi/trunk/juddi-gui-dsig/src/main/keystore/signing-jar.keystore
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: juddi/trunk/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/pom.xml?rev=1484657&r1=1484656&r2=1484657&view=diff
==============================================================================
--- juddi/trunk/pom.xml (original)
+++ juddi/trunk/pom.xml Tue May 21 04:08:16 2013
@@ -164,8 +164,8 @@
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-compiler-plugin</artifactId>
                     <configuration>
-                        <source>1.5</source>
-                        <target>1.5</target>
+                        <source>1.6</source>
+                        <target>1.6</target>
                     </configuration>
                 </plugin>
                 <plugin>
@@ -199,8 +199,23 @@
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-site-plugin</artifactId>
 					<version>2.0.1</version>
-					
 				</plugin>
+				<plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <configuration>
+                        <aggregate>true</aggregate>
+                    </configuration>
+                    <executions>
+                        <execution>
+                            <id>aggregate</id>
+                            <goals>
+                                <goal>aggregate</goal>
+                            </goals>
+                            <phase>site</phase>
+                        </execution>
+                    </executions>
+                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
@@ -251,6 +266,7 @@
 		<module>juddi-core-openjpa</module>
 		<module>juddiv3-war</module>
 		<module>juddi-examples</module>
+		<module>juddi-gui-dsig</module>
 		<module>juddi-tomcat</module>
 		<module>uddi-tck</module>
 	</modules>



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