blob: a17f8203ca1b664fb7d7f9e67cf2f92d18c95604 [file] [log] [blame]
Jeffrey van Gogh32d3c0c2016-04-04 10:49:31 -07001<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4 ~ Copyright (c) 2010, 2013 Sonatype, Inc.
5 ~ All rights reserved. This program and the accompanying materials
6 ~ are made available under the terms of the Eclipse Public License v1.0
7 ~ which accompanies this distribution, and is available at
8 ~ http://www.eclipse.org/legal/epl-v10.html
9 ~
10 ~ Contributors:
11 ~ Stuart McCulloch (Sonatype, Inc.) - initial API and implementation
12-->
13
14<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">
15 <modelVersion>4.0.0</modelVersion>
16
17 <parent>
18 <groupId>org.eclipse.sisu</groupId>
19 <artifactId>sisu-inject</artifactId>
20 <version>0.0.0.M5</version>
21 </parent>
22
23 <artifactId>org.eclipse.sisu.inject</artifactId>
24 <packaging>eclipse-plugin</packaging>
25
26 <!--
27 | Minimum requirements
28 -->
29 <dependencies>
30 <dependency>
31 <groupId>com.google.inject</groupId>
32 <artifactId>guice</artifactId>
33 <version>3.0</version>
34 </dependency>
35 </dependencies>
36
37 <build>
38 <sourceDirectory>src</sourceDirectory>
39 <plugins>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>build-helper-maven-plugin</artifactId>
43 <version>1.8</version>
44 <executions>
45 <execution>
46 <id>attach-build-target</id>
47 <phase>generate-resources</phase>
48 <goals>
49 <goal>attach-artifact</goal>
50 </goals>
51 <configuration>
52 <artifacts>
53 <artifact>
54 <file>build.target</file>
55 <classifier>build</classifier>
56 <type>target</type>
57 </artifact>
58 </artifacts>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>animal-sniffer-maven-plugin</artifactId>
66 </plugin>
67 <plugin>
68 <groupId>org.eclipse.tycho</groupId>
69 <artifactId>target-platform-configuration</artifactId>
70 </plugin>
71 <plugin>
72 <groupId>org.eclipse.tycho</groupId>
73 <artifactId>tycho-maven-plugin</artifactId>
74 <extensions>true</extensions>
75 </plugin>
76 <plugin>
77 <groupId>org.eclipse.tycho</groupId>
78 <artifactId>tycho-source-plugin</artifactId>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>