Home | History | Annotate | Download | only in 0.18.1
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!--
      3  - Copyright (c) 2008, 2011 Sonatype Inc. and others.
      4  - All rights reserved. This program and the accompanying materials
      5  - are made available under the terms of the Eclipse Public License v1.0
      6  - which accompanies this distribution, and is available at
      7  - http://www.eclipse.org/legal/epl-v10.html
      8  -
      9  - Contributors:
     10  -    Sonatype Inc. - initial API and implementation
     11  -->
     12 
     13 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     14 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     15 	<modelVersion>4.0.0</modelVersion>
     16 
     17 	<parent>
     18 		<groupId>org.eclipse.tycho</groupId>
     19 		<artifactId>tycho</artifactId>
     20 		<version>0.18.1</version>
     21 	</parent>
     22 	<artifactId>tycho-embedder-api</artifactId>
     23 
     24 	<name>Tycho Embedder API (Incubation)</name>
     25 
     26 	<properties>
     27 		<tycho-api-version>0.11.0</tycho-api-version>
     28 	</properties>
     29 
     30 	<dependencies>
     31 		<dependency>
     32 			<groupId>org.apache.maven</groupId>
     33 			<artifactId>maven-core</artifactId>
     34 		</dependency>
     35 		<dependency>
     36 			<groupId>org.eclipse.tycho</groupId>
     37 			<artifactId>org.eclipse.tycho.embedder.shared</artifactId>
     38 			<version>${project.version}</version>
     39 		</dependency>
     40 	</dependencies>
     41 
     42 	<build>
     43 		<plugins>
     44 			<plugin>
     45 				<artifactId>maven-jar-plugin</artifactId>
     46 				<configuration>
     47 					<archive>
     48 						<manifestFile>${project.basedir}/META-INF/MANIFEST.MF</manifestFile>
     49 					</archive>
     50 				</configuration>
     51 			</plugin>
     52 			<plugin>
     53 				<groupId>org.apache.felix</groupId>
     54 				<artifactId>maven-bundle-plugin</artifactId>
     55 				<executions>
     56 					<execution>
     57 						<id>bundle-manifest</id>
     58 						<phase>process-classes</phase>
     59 						<goals>
     60 							<goal>manifest</goal>
     61 						</goals>
     62 						<configuration>
     63 							<manifestLocation>META-INF</manifestLocation>
     64 							<instructions>
     65 								<Export-Package>*;version=${tycho-api-version}</Export-Package>
     66 							</instructions>
     67 						</configuration>
     68 					</execution>
     69 				</executions>
     70 			</plugin>
     71 		</plugins>
     72 	</build>
     73 
     74 </project>
     75