Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/compensator/org.eclipse.fx.code.compensator.app/pom.xml')
-rw-r--r--experimental/compensator/org.eclipse.fx.code.compensator.app/pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/experimental/compensator/org.eclipse.fx.code.compensator.app/pom.xml b/experimental/compensator/org.eclipse.fx.code.compensator.app/pom.xml
new file mode 100644
index 000000000..e5b6605fd
--- /dev/null
+++ b/experimental/compensator/org.eclipse.fx.code.compensator.app/pom.xml
@@ -0,0 +1,33 @@
+<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>
+ <name>CodeCompansator - application bundle</name>
+ <groupId>org.eclipse.fx.code.compensator</groupId>
+ <artifactId>org.eclipse.fx.code.compensator.app</artifactId>
+ <packaging>eclipse-plugin</packaging>
+
+ <parent>
+ <groupId>org.eclipse.fx.code.compensator</groupId>
+ <artifactId>org.eclipse.fx.code.compensator.app.releng</artifactId>
+ <relativePath>../org.eclipse.fx.code.compensator.app.releng/pom.xml</relativePath>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>META-INF/</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>

Back to the top