Skip to content

Commit

Permalink
Jenkins jobs - promotion fix (#697)
Browse files Browse the repository at this point in the history
Jenkins jobs - promotion fix

This is fix for GPG signing used during promotion.

Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Jan 31, 2020
1 parent 0143b82 commit 8fcfa30
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
38 changes: 33 additions & 5 deletions pom.xml.template
Original file line number Diff line number Diff line change
@@ -1,22 +1,47 @@
<!--

Copyright (c) 2007, 2020 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0,
or the Eclipse Distribution License v. 1.0 which is available at
http://www.eclipse.org/org/documents/edl-v10.php.

SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause

-->

<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.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.5</version>
</parent>

<groupId>@groupId@</groupId>
<artifactId>@artifactId@</artifactId>
<version>@version@</version>
<packaging>jar</packaging>
<name>@artifactName@</name>
<description>EclipseLink build based upon Git transaction @git.hash@</description>
<url>http://www.eclipse.org/eclipselink</url>

<organization>
<name>Eclipse.org - EclipseLink Project</name>
<url>http://www.eclipse.org/eclipselink</url>
</organization>

<issueManagement>
<system>bugzilla</system>
<url>https://bugs.eclipse.org/bugs</url>
</issueManagement>

<inceptionYear>2007</inceptionYear>

<mailingLists>
<mailingList>
<name>EclipseLink Developer List</name>
Expand All @@ -29,12 +54,13 @@
<archive>http://dev.eclipse.org/mhonarc/lists/eclipselink-users</archive>
</mailingList>
</mailingLists>

<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<name>Eclipse Public License v. 2.0</name>
<url>http://www.eclipse.org/legal/epl-v20.html</url>
<distribution>repo</distribution>
<comments>Standard Eclipse Licence</comments>
<comments>Standard Eclipse License</comments>
</license>
<license>
<name>Eclipse Distribution License v. 1.0</name>
Expand All @@ -43,10 +69,12 @@
<comments>Standard Eclipse Distribution License</comments>
</license>
</licenses>

<scm>
<connection>scm:git:http://git.eclipse.org/eclipselink/eclipselink.runtime.git</connection>
<url>http://git.eclipse.org/eclipselink/eclipselink.runtime.git</url>
<connection>scm:git:https://github.com/eclipse-ee4j/eclipselink.git</connection>
<url>https://github.com/eclipse-ee4j/eclipselink.git</url>
</scm>

<developers>
<developer>
<id>PeterKrogh</id>
Expand Down
7 changes: 4 additions & 3 deletions uploadToNexus.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!--/*******************************************************************************
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
Expand Down Expand Up @@ -64,12 +65,12 @@
classpathref="maven-ant-tasks.classpath" />

<!-- Tool version definitions -->
<property name="gpg.plugin.version" value="1.4"/>
<property name="wagon.http.version" value="2.4"/>
<property name="gpg.plugin.version" value="1.6"/>
<property name="wagon.http.version" value="3.3.3"/>

<!-- The repository info of where maven artifacts will be uploaded -->
<!-- Override value to change defaults -->
<property name="stagingId" value="sonatype-nexus-staging"/>
<property name="stagingId" value="ossrh"/>
<property name="stagingURL" value="https://oss.sonatype.org/service/local/staging/deploy/maven2"/>
<property name="snapshotId" value="sonatype-nexus-snapshots"/>
<property name="snapshotURL" value="https://oss.sonatype.org/content/repositories/snapshots"/>
Expand Down

0 comments on commit 8fcfa30

Please sign in to comment.