tycho-eclipserun-plugin
Used in: 
components
- OverviewOverview
 - VersionsVersions
 - DependentsDependents
 - DependenciesDependencies
 
<dependency>
    <groupId>org.eclipse.tycho.extras</groupId>
    <artifactId>tycho-eclipserun-plugin</artifactId>
    <version>4.0.13</version>
</dependency><!--
- Copyright (c) 2011, 2020 Marc-Andre Laperle 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 distribution, and is available at
- https://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
-    Marc-Andre Laperle - initial API and implementation
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <artifactId>tycho-extras</artifactId>
    <groupId>org.eclipse.tycho.extras</groupId>
    <version>4.0.13</version>
  </parent>
  <artifactId>tycho-eclipserun-plugin</artifactId>
  <packaging>maven-plugin</packaging>
  	<prerequisites>
		<maven>${minimal-maven-version}</maven>
	</prerequisites>
   <distributionManagement>
    <relocation>
      <groupId>org.eclipse.tycho</groupId>
      <artifactId>tycho-eclipse-plugin</artifactId>
      <version>4.0.13</version>
      <message>The eclipse-run mojo is now part of the tycho-eclipse-plugin</message>
    </relocation>
  </distributionManagement>
  <name>Tycho Eclipserun Plugin</name>
      <dependencies>
		<dependency>
			<groupId>org.apache.maven.plugin-tools</groupId>
			<artifactId>maven-plugin-annotations</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-artifact</artifactId>
		</dependency>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>sisu-equinox-launching</artifactId>
		</dependency>
		<dependency>
			<groupId>org.eclipse.tycho.extras</groupId>
			<artifactId>tycho-p2-extras-plugin</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-compat</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.eclipse.tycho</groupId>
			<artifactId>tycho-eclipse-plugin</artifactId>
			<version>${project.version}</version>
		</dependency>
      </dependencies>
	<profiles>
		<profile>
			<id>its</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-invoker-plugin</artifactId>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-plugin-plugin</artifactId>
				<!-- workaround for https://issues.apache.org/jira/browse/MPLUGIN-450 -->
				<configuration>
					<goalPrefix>tycho-eclipserun</goalPrefix>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>