Repository: juddi Updated Branches: refs/heads/master ed1692d1c -> 69dd97603
JUDDI-954 Build fails on Red Hat using JDK "1.7.0_79" - merged Project: http://git-wip-us.apache.org/repos/asf/juddi/repo Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/69dd9760 Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/69dd9760 Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/69dd9760 Branch: refs/heads/master Commit: 69dd976038172d0868acdef46816a90a4052fab8 Parents: ed1692d Author: Alex <[email protected]> Authored: Sat Dec 12 07:49:36 2015 -0500 Committer: Alex <[email protected]> Committed: Sat Dec 12 07:49:36 2015 -0500 ---------------------------------------------------------------------- juddi-gui-dsig/pom.xml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/juddi/blob/69dd9760/juddi-gui-dsig/pom.xml ---------------------------------------------------------------------- diff --git a/juddi-gui-dsig/pom.xml b/juddi-gui-dsig/pom.xml index 7f1b5e1..1c8ac69 100644 --- a/juddi-gui-dsig/pom.xml +++ b/juddi-gui-dsig/pom.xml @@ -51,7 +51,7 @@ language governing permissions and * limitations under the License. * */ --> </goals> <phase>package</phase> <configuration> - + <archive>${project.build.directory}/${artifactId}-${version}-jar-with-dependencies.jar</archive> <keystore>src/main/keystore/signing-jar.keystore</keystore> <alias>applet</alias> @@ -98,6 +98,24 @@ language governing permissions and * limitations under the License. * */ --> </dependency> </dependencies> </profile> + <profile> + <id>standard-with-plugin-in-jre-folder</id> + <activation> + <file> + <exists>${java.home}/jre/lib/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>${java.home}/jre/lib/plugin.jar</systemPath> + </dependency> + </dependencies> + </profile> <profile> <id>icedtea-web</id> <activation> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
