Updated Branches: refs/heads/sqoop2 4cefb88d1 -> 1f3f127b6
SQOOP-803: Add gpg profile to pom file so that we can easily deploy artifacts to mvn repository (Jarek Jarcec Cecho via Cheolsoo Park) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/1f3f127b Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/1f3f127b Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/1f3f127b Branch: refs/heads/sqoop2 Commit: 1f3f127b6494bdb91db0b7ecaca3dd4e86e065a0 Parents: 4cefb88 Author: Cheolsoo Park <[email protected]> Authored: Fri Jan 4 02:05:23 2013 -0800 Committer: Cheolsoo Park <[email protected]> Committed: Fri Jan 4 02:05:23 2013 -0800 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/1f3f127b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2e66f7f..003ac43 100644 --- a/pom.xml +++ b/pom.xml @@ -184,6 +184,28 @@ limitations under the License. </dependencies> </dependencyManagement> </profile> + + <!-- Sign profile for releasing artifacts to Nexus repository --> + <profile> + <id>sign</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> <dependencyManagement>
