Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1186ddd7c42fef3358c39c15d57c13f9dd8ec7eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<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>e(fx)clipse - IDE - l10n UI</name>
	<groupId>org.eclipse.fx.ide</groupId>
	<artifactId>org.eclipse.fx.ide.l10n.ui</artifactId>
	<packaging>eclipse-plugin</packaging>

	<parent>
		<groupId>org.eclipse.fx.ide</groupId>
		<artifactId>releng</artifactId>
		<relativePath>../../../releng/org.eclipse.fx.ide.releng/pom.xml</relativePath>
		<version>2.2.0-SNAPSHOT</version>
	</parent>

	<build>
		<resources>
			<!-- to ensure that the feature lookup of the ui test works -->
			<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