Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 338dcc4f6cf52a14e595e1785285d23b84fc349b (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
<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>
	
	<parent>
		<artifactId>org.eclipse.jpt.jpadiagrameditor_parent</artifactId>
		<groupId>org.eclipse.jpt.jpadiagrameditor</groupId>
		<version>1.1.0-SNAPSHOT</version>
		<relativePath>../org.eclipse.jpt.jpadiagrameditor.releng/pom.xml</relativePath>
	</parent>
	
	<artifactId>org.eclipse.jpt.jpadiagrameditor.repository</artifactId>
	<packaging>eclipse-update-site</packaging>
	<name>JPA Editor Update Site</name>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.sonatype.tycho</groupId>
				<artifactId>maven-osgi-packaging-plugin</artifactId>
				<configuration>
					<archiveSite>true</archiveSite>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
</project>

Back to the top