blob: 8881037a3d5b8a9c526b46b6961bb77f38439895 [file] [log] [blame]
Clement Escoffier0deaa3d2013-04-22 12:07:12 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>org.apache.felix.ipojo.distributions</artifactId>
29 <version>1.9.0-SNAPSHOT</version>
30 </parent>
31
32 <artifactId>ipojo-webconsole-quicktart</artifactId>
33 <version>1.9.0-SNAPSHOT</version>
34
35 <packaging>pom</packaging>
36
37 <description>
38 Build a distribution of Felix including iPOJO, and a working web console
39 </description>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.apache.felix.main.distribution</artifactId>
45 <type>zip</type>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.ipojo</artifactId>
50 <exclusions>
51 <exclusion>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
54 </exclusion>
55 </exclusions>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.felix</groupId>
Clement Escoffier4eede512013-06-30 07:29:15 +000059 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000060 <exclusions>
61 <exclusion>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.gogo.runtime</artifactId>
64 </exclusion>
65 </exclusions>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
70 <version>1.7.0-SNAPSHOT</version>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.webconsole</artifactId>
75 <version>4.0.0</version>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>org.apache.felix.webconsole.plugins.packageadmin</artifactId>
80 <version>1.0.0</version>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>org.apache.felix.webconsole.plugins.memoryusage</artifactId>
85 <version>1.0.2</version>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>org.apache.felix.http.jetty</artifactId>
90 <version>2.2.0</version>
91 </dependency>
92 <dependency>
93 <groupId>javax.servlet</groupId>
94 <artifactId>com.springsource.javax.servlet</artifactId>
Clement Escoffier39c13e02013-04-24 17:13:13 +000095 <version>2.4.0</version>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000096 </dependency>
97 <dependency>
98 <groupId>org.osgi</groupId>
99 <artifactId>org.osgi.compendium</artifactId>
100 <version>4.2.0</version>
101 </dependency>
102 <dependency>
103 <groupId>org.json</groupId>
104 <artifactId>org.ow2.chameleon.commons.json</artifactId>
105 <version>20090911-0002</version>
106 </dependency>
107 <dependency>
108 <groupId>commons-io</groupId>
109 <artifactId>commons-io</artifactId>
110 <version>2.4</version>
111 </dependency>
112 <dependency>
113 <groupId>commons-fileupload</groupId>
114 <artifactId>commons-fileupload</artifactId>
115 <version>1.2.2</version>
116 </dependency>
117 </dependencies>
118
119 <!-- Add OW2 repository -->
120 <repositories>
121 <repository>
122 <id>ow2.releases</id>
123 <url>http://repository.ow2.org/nexus/content/groups/public/</url>
124 </repository>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000125
126 <repository>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000127 <id>com.springsource.repository.libraries.external</id>
128 <name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
Clement Escoffier39c13e02013-04-24 17:13:13 +0000129 <url>http://repository.springsource.com/maven/bundles/external</url>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000130 </repository>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +0000131 </repositories>
132
133 <build>
134 <plugins>
135 <plugin>
136 <artifactId>maven-assembly-plugin</artifactId>
137 <configuration>
138 <descriptors>
139 <descriptor>src/main/assembly/distribution.xml</descriptor>
140 </descriptors>
141 <attach>true</attach>
142 </configuration>
143 <executions>
144 <execution>
145 <goals>
146 <goal>single</goal>
147 </goals>
148 <phase>package</phase>
149 </execution>
150 </executions>
151 </plugin>
152 </plugins>
153 </build>
154</project>