| 20434 |
alitokmen |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<!--
|
|
|
3 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
4 |
- JOnAS: Java(TM) Open Application Server
|
|
|
5 |
- Copyright (C) 2010 Bull S.A.S.
|
|
|
6 |
- Contact: jonas-team@ow2.org
|
|
|
7 |
-
|
|
|
8 |
- This library is free software; you can redistribute it and/or
|
|
|
9 |
- modify it under the terms of the GNU Lesser General Public
|
|
|
10 |
- License as published by the Free Software Foundation; either
|
|
|
11 |
- version 2.1 of the License, or any later version.
|
|
|
12 |
-
|
|
|
13 |
- This library is distributed in the hope that it will be useful,
|
|
|
14 |
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
15 |
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
16 |
- Lesser General Public License for more details.
|
|
|
17 |
-
|
|
|
18 |
- You should have received a copy of the GNU Lesser General Public
|
|
|
19 |
- License along with this library; if not, write to the Free Software
|
|
|
20 |
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
21 |
- USA
|
|
|
22 |
-
|
|
|
23 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
24 |
- $Id: pom.xml 20437 2010-10-08 08:52:18Z alitokmen $
|
|
|
25 |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
26 |
-->
|
|
|
27 |
<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">
|
|
|
28 |
|
|
|
29 |
<parent>
|
|
|
30 |
<groupId>org.ow2</groupId>
|
|
|
31 |
<artifactId>ow2</artifactId>
|
|
|
32 |
<version>1.1</version>
|
|
|
33 |
</parent>
|
|
|
34 |
<modelVersion>4.0.0</modelVersion>
|
|
|
35 |
<groupId>org.ow2.jonas</groupId>
|
|
|
36 |
<artifactId>jonas-versions-servlet</artifactId>
|
|
|
37 |
<packaging>bundle</packaging>
|
| 20437 |
alitokmen |
38 |
<version>1.0.1-SNAPSHOT</version>
|
| 20434 |
alitokmen |
39 |
<name>JOnAS versions OSGi servlet</name>
|
|
|
40 |
|
|
|
41 |
<properties>
|
|
|
42 |
<osgi.version>4.2.0</osgi.version>
|
|
|
43 |
<ipojo.version>1.6.0</ipojo.version>
|
|
|
44 |
<servlet.version>2.5</servlet.version>
|
|
|
45 |
<ow2-util.version>1.0.24</ow2-util.version>
|
|
|
46 |
<bundle-plugin.version>2.1.0</bundle-plugin.version>
|
|
|
47 |
</properties>
|
|
|
48 |
|
|
|
49 |
<build>
|
|
|
50 |
<plugins>
|
|
|
51 |
<plugin>
|
|
|
52 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
53 |
<configuration>
|
|
|
54 |
<source>1.5</source>
|
|
|
55 |
<target>1.5</target>
|
|
|
56 |
</configuration>
|
|
|
57 |
</plugin>
|
|
|
58 |
<plugin>
|
|
|
59 |
<groupId>org.apache.felix</groupId>
|
|
|
60 |
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
61 |
<version>${bundle-plugin.version}</version>
|
|
|
62 |
<extensions>true</extensions>
|
|
|
63 |
</plugin>
|
|
|
64 |
<plugin>
|
|
|
65 |
<groupId>org.apache.felix</groupId>
|
|
|
66 |
<artifactId>maven-ipojo-plugin</artifactId>
|
|
|
67 |
<version>${ipojo.version}</version>
|
|
|
68 |
<configuration>
|
|
|
69 |
<ignoreAnnotations>false</ignoreAnnotations>
|
|
|
70 |
</configuration>
|
|
|
71 |
<executions>
|
|
|
72 |
<execution>
|
|
|
73 |
<goals>
|
|
|
74 |
<goal>ipojo-bundle</goal>
|
|
|
75 |
</goals>
|
|
|
76 |
</execution>
|
|
|
77 |
</executions>
|
|
|
78 |
</plugin>
|
|
|
79 |
</plugins>
|
|
|
80 |
</build>
|
|
|
81 |
|
|
|
82 |
<dependencies>
|
|
|
83 |
<dependency>
|
|
|
84 |
<groupId>javax.servlet</groupId>
|
|
|
85 |
<artifactId>servlet-api</artifactId>
|
|
|
86 |
<version>${servlet.version}</version>
|
|
|
87 |
</dependency>
|
|
|
88 |
<dependency>
|
|
|
89 |
<groupId>org.osgi</groupId>
|
|
|
90 |
<artifactId>org.osgi.compendium</artifactId>
|
|
|
91 |
<version>${osgi.version}</version>
|
|
|
92 |
</dependency>
|
|
|
93 |
<dependency>
|
|
|
94 |
<groupId>org.apache.felix</groupId>
|
|
|
95 |
<artifactId>org.apache.felix.ipojo.annotations</artifactId>
|
|
|
96 |
<version>${ipojo.version}</version>
|
|
|
97 |
</dependency>
|
|
|
98 |
<dependency>
|
|
|
99 |
<groupId>org.ow2.util</groupId>
|
|
|
100 |
<artifactId>util-ee-deploy-impl</artifactId>
|
|
|
101 |
<version>${ow2-util.version}</version>
|
|
|
102 |
</dependency>
|
|
|
103 |
</dependencies>
|
|
|
104 |
|
|
|
105 |
<scm>
|
| 20437 |
alitokmen |
106 |
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/jonas/sub-projects/jonas-versions-servlet/trunk</connection>
|
|
|
107 |
<developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/jonas/sub-projects/jonas-versions-servlet/trunk</developerConnection>
|
|
|
108 |
<url>http://websvn.ow2.org/listing.php?repname=jonas&path=/sub-projects/jonas-versions-servlet/trunk</url>
|
| 20434 |
alitokmen |
109 |
</scm>
|
|
|
110 |
</project>
|