Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/org.eclipse.sirius.workflow-feature/pom.xml')
-rw-r--r--packaging/org.eclipse.sirius.workflow-feature/pom.xml67
1 files changed, 0 insertions, 67 deletions
diff --git a/packaging/org.eclipse.sirius.workflow-feature/pom.xml b/packaging/org.eclipse.sirius.workflow-feature/pom.xml
deleted file mode 100644
index 57b2a72da8..0000000000
--- a/packaging/org.eclipse.sirius.workflow-feature/pom.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2015 Obeo
- This program and the accompanying materials
- are made available under the terms of the Eclipse Public License 2.0
- which accompanies this distribution, and is available at
- https://www.eclipse.org/legal/epl-2.0/
-
- SPDX-License-Identifier: EPL-2.0
-
- Contributors:
- Obeo - Initial API and implementation
--->
-<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>
-
- <parent>
- <groupId>org.eclipse.sirius</groupId>
- <artifactId>sirius-parent</artifactId>
- <version>7.0.0-SNAPSHOT</version>
- <relativePath>../../packaging/org.eclipse.sirius.parent</relativePath>
- </parent>
-
- <properties>
- <!-- Skip feature in Sonar analysis -->
- <sonar.skip>true</sonar.skip>
- </properties>
-
- <artifactId>org.eclipse.sirius.workflow.feature</artifactId>
- <packaging>eclipse-feature</packaging>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho.extras</groupId>
- <artifactId>tycho-source-feature-plugin</artifactId>
- <version>${tycho-extras-version}</version>
- <executions>
- <execution>
- <id>source-feature</id>
- <phase>package</phase>
- <goals>
- <goal>source-feature</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-p2-plugin</artifactId>
- <version>${tycho-version}</version>
- <executions>
- <execution>
- <id>attached-p2-metadata</id>
- <phase>package</phase>
- <goals>
- <goal>p2-metadata</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
-</project>

Back to the top