blob: 36a05eb43ea74cc6301858d5d90e24913cc70262 [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>
Clement Escoffierc57fd3b2013-12-08 15:11:46 +000029 <version>1.10.2-SNAPSHOT</version>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000030 </parent>
31
32 <artifactId>ipojo-webconsole-quicktart</artifactId>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000033
34 <packaging>pom</packaging>
35
36 <description>
37 Build a distribution of Felix including iPOJO, and a working web console
38 </description>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.main.distribution</artifactId>
44 <type>zip</type>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo</artifactId>
49 <exclusions>
50 <exclusion>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
53 </exclusion>
54 </exclusions>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.felix</groupId>
Clement Escoffier4eede512013-06-30 07:29:15 +000058 <artifactId>org.apache.felix.ipojo.gogo</artifactId>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000059 <exclusions>
60 <exclusion>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.gogo.runtime</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
69 <version>1.7.0-SNAPSHOT</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.webconsole</artifactId>
74 <version>4.0.0</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.webconsole.plugins.packageadmin</artifactId>
79 <version>1.0.0</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.webconsole.plugins.memoryusage</artifactId>
84 <version>1.0.2</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.http.jetty</artifactId>
89 <version>2.2.0</version>
90 </dependency>
91 <dependency>
92 <groupId>javax.servlet</groupId>
93 <artifactId>com.springsource.javax.servlet</artifactId>
Clement Escoffier39c13e02013-04-24 17:13:13 +000094 <version>2.4.0</version>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +000095 </dependency>
96 <dependency>
97 <groupId>org.osgi</groupId>
98 <artifactId>org.osgi.compendium</artifactId>
99 <version>4.2.0</version>
100 </dependency>
101 <dependency>
102 <groupId>org.json</groupId>
103 <artifactId>org.ow2.chameleon.commons.json</artifactId>
104 <version>20090911-0002</version>
105 </dependency>
106 <dependency>
107 <groupId>commons-io</groupId>
108 <artifactId>commons-io</artifactId>
109 <version>2.4</version>
110 </dependency>
111 <dependency>
112 <groupId>commons-fileupload</groupId>
113 <artifactId>commons-fileupload</artifactId>
114 <version>1.2.2</version>
115 </dependency>
116 </dependencies>
117
118 <!-- Add OW2 repository -->
119 <repositories>
120 <repository>
121 <id>ow2.releases</id>
122 <url>http://repository.ow2.org/nexus/content/groups/public/</url>
123 </repository>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000124
125 <repository>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000126 <id>com.springsource.repository.libraries.external</id>
127 <name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
Clement Escoffier39c13e02013-04-24 17:13:13 +0000128 <url>http://repository.springsource.com/maven/bundles/external</url>
Clement Escoffier134b91a2013-04-24 17:00:47 +0000129 </repository>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +0000130 </repositories>
131
132 <build>
133 <plugins>
134 <plugin>
135 <artifactId>maven-assembly-plugin</artifactId>
136 <configuration>
137 <descriptors>
138 <descriptor>src/main/assembly/distribution.xml</descriptor>
139 </descriptors>
140 <attach>true</attach>
141 </configuration>
142 <executions>
143 <execution>
144 <goals>
145 <goal>single</goal>
146 </goals>
147 <phase>package</phase>
148 </execution>
149 </executions>
150 </plugin>
151 </plugins>
152 </build>
153</project>