-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
186 lines (174 loc) · 5.35 KB
/
pom.xml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2010, 2012 SAP AG and others.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- SAP AG - initial API and implementation
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.tycho.nexus</groupId>
<artifactId>unzip-repository-plugin</artifactId>
<version>0.10.0-SNAPSHOT</version>
<inceptionYear>2010</inceptionYear>
<url>http://www.eclipse.org/tycho/</url>
<ciManagement>
<system>hudson</system>
<url>https://hudson.eclipse.org/hudson</url>
</ciManagement>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<organization>
<name>Eclipse Foundation</name>
<url>http://www.eclipse.org/</url>
</organization>
<issueManagement>
<system>Bugzilla</system>
<url>https://bugs.eclipse.org/bugs/buglist.cgi?product=Tycho</url>
</issueManagement>
<packaging>nexus-plugin</packaging>
<name>Unzip Repository Nexus Plugin (Incubation)</name>
<description>
The Unzip Repository is a Nexus repository type that shadows the build results of a standard
Maven 2 repository and allows to browse into zip and jar artifacts.
The use case for Tycho is to to offer p2 repositories that were build with Tycho and deployed
to Nexus as zip so that other Tycho projects can reference them.
</description>
<properties>
<nexus-version>2.3.0</nexus-version>
</properties>
<repositories>
<repository>
<id>repository.sonatype.org</id>
<url>https://repository.sonatype.org/content/groups/forge/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repository.sonatype.org</id>
<url>https://repository.sonatype.org/content/groups/forge/</url>
</pluginRepository>
</pluginRepositories>
<dependencyManagement>
<dependencies>
<!-- plexus-utils are provided by Nexus -> mark as "provided", otherwise they will be
packaged into the plugin archive and this can lead to runtime version mismatches! -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>2.0.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>3.0.4</version>
</dependency>
<!-- Main plugin API, pulling in what is needed -->
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-api</artifactId>
<version>${nexus-version}</version>
<scope>provided</scope>
</dependency>
<!-- This dependency is only needed if you want to include REST Resources -->
<dependency>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-restlet1x-plugin</artifactId>
<version>${nexus-version}</version>
<type>nexus-plugin</type>
<scope>provided</scope>
</dependency>
<!-- Basic testing -->
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-test-api</artifactId>
<version>${nexus-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Needed for custom packaging -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>app-lifecycle-maven-plugin</artifactId>
<version>1.7</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>org.sonatype.plugins</groupId>
<artifactId>app-lifecycle-nexus</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Generate components.xml to use Plexus style of dependency injection -->
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>1.5.5</version>
<executions>
<execution>
<id>process-classes</id>
<goals>
<goal>generate-metadata</goal>
</goals>
</execution>
<execution>
<id>process-test-classes</id>
<goals>
<goal>generate-test-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>