54 lines
1.8 KiB
XML
54 lines
1.8 KiB
XML
<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">
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
<artifactId>jetty-osgi-project</artifactId>
|
|
<!--version>7.5.0.v20110901</version-->
|
|
<version>7.5.2-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
<artifactId>jetty-osgi-servletbridge</artifactId>
|
|
<name>Jetty :: OSGi :: Servletbridge</name>
|
|
<description>Jetty OSGi Servletbridge webapp</description>
|
|
<packaging>war</packaging>
|
|
<properties><eclipse.pde>false</eclipse.pde></properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.servletbridge</artifactId>
|
|
<version>1.2.0.v20100503</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
<version>3.6.0.v20100517</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<!-- can't find equinox servlet bridge jar on maven central.
|
|
uploaded it to intalio.org for now. -->
|
|
<repository>
|
|
<id>intalio-org</id>
|
|
<url>http://intalio.org/public/maven2</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<plugins><plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<configuration>
|
|
<pde>false</pde>
|
|
</configuration>
|
|
</plugin></plugins>
|
|
</build>
|
|
|
|
</project>
|