blob: 7d5191ff0f757e7c9d1adc40ef30886e39049f6e [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>
59 <artifactId>org.apache.felix.ipojo.arch.gogo</artifactId>
60 <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>
95 <version>2.5.0</version>
96 </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>
127 <id>com.springsource.repository.libraries.release</id>
128 <name>SpringSource Enterprise Bundle Repository - SpringSource Library Releases</name>
129 <url>http://repository.springsource.com/maven/libraries/release</url>
130 </repository>
131
132 <repository>
133 <id>com.springsource.repository.libraries.external</id>
134 <name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
135 <url>http://repository.springsource.com/maven/libraries/external</url>
136 </repository>
Clement Escoffier0deaa3d2013-04-22 12:07:12 +0000137 </repositories>
138
139 <build>
140 <plugins>
141 <plugin>
142 <artifactId>maven-assembly-plugin</artifactId>
143 <configuration>
144 <descriptors>
145 <descriptor>src/main/assembly/distribution.xml</descriptor>
146 </descriptors>
147 <attach>true</attach>
148 </configuration>
149 <executions>
150 <execution>
151 <goals>
152 <goal>single</goal>
153 </goals>
154 <phase>package</phase>
155 </execution>
156 </executions>
157 </plugin>
158 </plugins>
159 </build>
160</project>