| <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> |
| <groupId>org.eclipse.papyrus.migration.elementtypereference</groupId> |
| <artifactId>org.eclipse.papyrus.developer.migration.elementtypereference.parent</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>org.eclipse.papyrus.developer.migration.elementtypereference.parent</name> |
| <description>This project is dedicated to migrate several models with string reference to ereference of elementtype </description> |
| |
| <properties> |
| <junit.version>4.12</junit.version> |
| <junit.jupiter.version>5.0.0-M4</junit.jupiter.version> |
| <junit.vintage.version>${junit.version}.0-M4</junit.vintage.version> |
| <junit.platform.version>1.0.0-M4</junit.platform.version> |
| </properties> |
| |
| <organization> |
| <name>Eclipse foundation</name> |
| <url>https://www.eclipse.org/</url> |
| </organization> |
| |
| <scm> |
| <url>http://git.eclipse.org/c/papyrus/org.eclipse.papyrus.tools.git/</url> |
| <connection>scm:git:http://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus.tools.git</connection> |
| <developerConnection>scm:git:ssh://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus.tools.git</developerConnection> |
| </scm> |
| |
| <ciManagement> |
| <system>Hudson</system> |
| <url>https://hudson.eclipse.org/papyrus/view/Components/</url> |
| </ciManagement> |
| <issueManagement> |
| <url>https://bugs.eclipse.org/bugs/buglist.cgi?product=Papyrus&component=components</url> |
| <system>Bugzilla</system> |
| </issueManagement> |
| |
| <licenses> |
| <license> |
| <name>Eclipse Public License - v 1.0</name> |
| <url>http://www.eclipse.org/legal/epl-v10.html</url> |
| <distribution>repo</distribution> |
| <comments>Copyright (c) 2017 CEA LIST and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distributione</comments> |
| </license> |
| </licenses> |
| |
| <developers> |
| <developer> |
| <name>Francois LE FEVRE</name> |
| <organization>CEA Tech LIST</organization> |
| <organizationUrl>http://www-list.cea.fr/</organizationUrl> |
| <id>flefevre</id> |
| </developer> |
| </developers> |
| |
| <dependencyManagement> |
| |
| <dependencies> |
| |
| <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>2.2</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/xerces/xercesImpl --> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| <version>2.5.0</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/log4j/log4j --> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <version>1.2.17</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <version>${junit.jupiter.version}</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <dependencies> |
| |
| <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/xerces/xercesImpl --> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <version>${junit.jupiter.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| <modules> |
| <module>org.eclipse.papyrus.developer.migration.elementtypereference.common</module> |
| <module>org.eclipse.papyrus.developer.migration.elementtypereference.creationmenumodel</module> |
| <module>org.eclipse.papyrus.developer.migration.elementtypereference.expansionmodel</module> |
| </modules> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.7</version> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.19.1</version> |
| <configuration> |
| <includes> |
| <include>**/Test*.java</include> |
| <include>**/*Test.java</include> |
| <include>**/*Tests.java</include> |
| <include>**/*TestCase.java</include> |
| </includes> |
| <properties> |
| <!-- <includeTags>fast</includeTags> --> |
| <excludeTags>slow</excludeTags> |
| </properties> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.junit.platform</groupId> |
| <artifactId>junit-platform-surefire-provider</artifactId> |
| <version>${junit.platform.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <version>${junit.jupiter.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.vintage</groupId> |
| <artifactId>junit-vintage-engine</artifactId> |
| <version>${junit.vintage.version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| |
| </build> |
| |
| </project> |