81 lines
2.9 KiB
XML
81 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
<artifactId>jetty-osgi-project</artifactId>
|
|
<version>10.0.23-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>jetty-httpservice</artifactId>
|
|
<name>Jetty :: OSGi :: HttpService</name>
|
|
<description>Jetty OSGi HttpService bundle</description>
|
|
<properties>
|
|
<bundle-symbolic-name>${project.groupId}.httpservice</bundle-symbolic-name>
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.osgi.httpservice.*</spotbugs.onlyAnalyze>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox.http</groupId>
|
|
<artifactId>servlet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-util</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-servlet-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.platform</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Bundle-SymbolicName>org.eclipse.jetty.osgi.httpservice</Bundle-SymbolicName>
|
|
<Bundle-Name>OSGi HttpService</Bundle-Name>
|
|
<Jetty-ContextFilePath>contexts/httpservice.xml</Jetty-ContextFilePath>
|
|
<Import-Package>org.eclipse.jetty.server.handler;version="[10,11.0)",
|
|
org.eclipse.jetty.util.component;version="[10,11.0)",
|
|
org.eclipse.jetty.server.session;version="[10,11.0)",
|
|
org.eclipse.jetty.servlet;version="[10,11.0)",
|
|
org.eclipse.equinox.http.servlet, *</Import-Package>
|
|
<_nouses>true</_nouses>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<target>
|
|
<copy todir="target/classes/contexts">
|
|
<fileset dir="contexts"></fileset>
|
|
</copy>
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|