blob: ab0c1289d26913b0e773ea1fd3b390b3c96469ef [file] [log] [blame]
<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>
<groupId>org.eclipse.papyrus</groupId>
<artifactId>papyrus-enforcer-rules</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>papyrus-enforcer-rules</name>
<packaging>jar</packaging>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>https://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<contributors>
<contributor>
<name>Benoit MAGGI</name>
<organization>CEA</organization>
<email>benoit.maggi@cea.fr</email>
</contributor>
</contributors>
<repositories>
<repository>
<id>tycho</id>
<url>https://repo.eclipse.org/content/repositories/tycho</url>
</repository>
</repositories>
<!-- It is important to ensure your ID s are repo.eclipse.org as the Hudson
instance is configured to use these IDs. -->
<distributionManagement>
<repository>
<id>repo.eclipse.org</id>
<name>Papyrus Repository - Releases</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-releases/</url>
</repository>
<snapshotRepository>
<id>repo.eclipse.org</id>
<name>Papyrus Repository - Snapshots</name>
<url>https://repo.eclipse.org/content/repositories/papyrus-snapshots/</url>
<!-- If you want to keep several snapshot versions use -->
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<properties>
<tycho.version>0.24.0</tycho.version>
<enforcer.api.version>1.4.1</enforcer.api.version>
<maven.version>3.3.3</maven.version>
<maven.plugin.annotations>3.4</maven.plugin.annotations>
<java.version>1.5</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.invoker.plugin.version>1.9</maven.invoker.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-core</artifactId>
<version>${tycho.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.tycho</groupId>
<artifactId>org.eclipse.tycho.embedder.shared</artifactId>
<version>${tycho.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.annotations}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.enforcer</groupId>
<artifactId>enforcer-api</artifactId>
<version>${enforcer.api.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>${maven.invoker.plugin.version}</version>
<configuration>
<projectsDirectory>src/test/it</projectsDirectory>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>