177848d63SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 277848d63SMatthias Sohn<!-- 377848d63SMatthias Sohn Copyright (C) 2020, Matthias Sohn <matthias.sohn@sap.com> and others 477848d63SMatthias Sohn 577848d63SMatthias Sohn This program and the accompanying materials are made available under the 677848d63SMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 777848d63SMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 877848d63SMatthias Sohn 977848d63SMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 1077848d63SMatthias Sohn--> 1177848d63SMatthias Sohn 1277848d63SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 1377848d63SMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 1477848d63SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 1577848d63SMatthias Sohn <modelVersion>4.0.0</modelVersion> 1677848d63SMatthias Sohn 1777848d63SMatthias Sohn <parent> 1877848d63SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 1977848d63SMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 20*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 2177848d63SMatthias Sohn </parent> 2277848d63SMatthias Sohn 2377848d63SMatthias Sohn <groupId>org.eclipse.jgit.feature</groupId> 2477848d63SMatthias Sohn <artifactId>org.eclipse.jgit.gpg.bc</artifactId> 2577848d63SMatthias Sohn <packaging>eclipse-feature</packaging> 2677848d63SMatthias Sohn 2777848d63SMatthias Sohn <name>JGit - GPG support using bouncycastle</name> 2877848d63SMatthias Sohn <dependencies> 2977848d63SMatthias Sohn 3077848d63SMatthias Sohn <dependency> 3177848d63SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 3277848d63SMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 3377848d63SMatthias Sohn <version>${project.version}</version> 3477848d63SMatthias Sohn </dependency> 3577848d63SMatthias Sohn 3677848d63SMatthias Sohn <dependency> 3777848d63SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 3877848d63SMatthias Sohn <artifactId>org.eclipse.jgit.gpg.bc</artifactId> 3977848d63SMatthias Sohn <version>${project.version}</version> 4077848d63SMatthias Sohn </dependency> 4177848d63SMatthias Sohn 4277848d63SMatthias Sohn </dependencies> 4377848d63SMatthias Sohn 4477848d63SMatthias Sohn</project> 45