<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2013-2015 Eclipse Foundation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/org/documents/edl-v10.php Contributors: Caroline McQuatt, Mike Lim - initial implementation Mikael Barbero --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>eclipse-winsigner-plugin</artifactId> <packaging>maven-plugin</packaging> <parent> <groupId>org.eclipse.cbi.maven.plugins</groupId> <artifactId>maven-plugin-parent</artifactId> <version>1.1.5</version> </parent> <scm> <connection>scm:git:https://git.eclipse.org/r/cbi/org.eclipse.cbi</connection> <developerConnection>scm:git:ssh://git.eclipse.org:29418/cbi/org.eclipse.cbi</developerConnection> <tag>master</tag> <url>http://git.eclipse.org/c/cbi/org.eclipse.cbi.git/</url> </scm> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.cbi</groupId> <artifactId>cbi-common</artifactId> </dependency> <dependency> <groupId>org.eclipse.cbi.maven.plugins</groupId> <artifactId>cbi-maven-plugin-common</artifactId> </dependency> <dependency> <groupId>com.google.auto.value</groupId> <artifactId>auto-value</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <!-- Dependency scope: test --> <dependency> <groupId>org.eclipse.cbi</groupId> <artifactId>cbi-common</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>org.eclipse.cbi.maven.plugins</groupId> <artifactId>cbi-maven-plugin-common</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> </dependency> </dependencies> </project>