Author: kstam
Date: Tue May 21 06:00:23 2013
New Revision: 1484666
URL: http://svn.apache.org/r1484666
Log:
JUDDI-613, adding jar-with-dependencies
Modified:
juddi/trunk/juddi-gui-dsig/keystore.sh
juddi/trunk/juddi-gui-dsig/pom.xml
juddi/trunk/juddi-gui-dsig/src/main/keystore/signing-jar.keystore
Modified: juddi/trunk/juddi-gui-dsig/keystore.sh
URL:
http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/keystore.sh?rev=1484666&r1=1484665&r2=1484666&view=diff
==============================================================================
--- juddi/trunk/juddi-gui-dsig/keystore.sh (original)
+++ juddi/trunk/juddi-gui-dsig/keystore.sh Tue May 21 06:00:23 2013
@@ -1,4 +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 -genkey -alias applet -keystore $KEYSTORE -storepass applet -keypass
applet -dname "CN=developer, OU=group 3, O=org.apache.juddi, L=Boston,
ST=United States of America, C=USA"
keytool -selfcert -alias applet -keystore $KEYSTORE -storepass applet -keypass
applet
Modified: juddi/trunk/juddi-gui-dsig/pom.xml
URL:
http://svn.apache.org/viewvc/juddi/trunk/juddi-gui-dsig/pom.xml?rev=1484666&r1=1484665&r2=1484666&view=diff
==============================================================================
--- juddi/trunk/juddi-gui-dsig/pom.xml (original)
+++ juddi/trunk/juddi-gui-dsig/pom.xml Tue May 21 06:00:23 2013
@@ -1,67 +1,78 @@
<?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>
+<!-- * 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>
+ <build>
+ <finalName>${artifactId}-${version}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <descriptorRefs>
+
<descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <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>
Modified: 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=1484666&r1=1484665&r2=1484666&view=diff
==============================================================================
Binary files - no diff available.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]