jetty.project/jetty-osgi/pom.xml

203 lines
6.5 KiB
XML
Raw Normal View History

<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</groupId>
<artifactId>jetty-project</artifactId>
2019-04-02 22:06:51 -04:00
<version>9.3.26.v20190403</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty.osgi</groupId>
<artifactId>jetty-osgi-project</artifactId>
<name>Jetty :: OSGi</name>
<url>http://www.eclipse.org/jetty</url>
<packaging>pom</packaging>
<properties>
<osgi-version>3.6.0.v20100517</osgi-version>
<osgi-services-version>3.2.100.v20100503</osgi-services-version>
<equinox-http-servlet-version>1.0.0-v20070606</equinox-http-servlet-version>
<!--equinox-servletbridge-version>1.0.0-v20070523</equinox-servletbridge-version-->
Clean-up OSGi test; add spdy OSGi test; fix felix Upgrade to the latest pax-exam Support for felix-3.x and 4.x as tested Fix the spdy MANIFEST.MF generations Add an integration test for SPDY Refactor the test code Squashed commit of the following: commit bd020ee1214992d8d21a11dc800e04dc5e9b2001 Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Sat Oct 6 16:58:43 2012 +0800 Add spdy integration test for OSGi and clean-up Refacor the pax-exam OSGi integration tests Add an integration test for spdy. Execute the test under 2 versions of felix and 2 versions of equinox. commit f3151a272ab92560432f3b76f564bf06b19bc22b Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Sat Oct 6 16:28:51 2012 +0800 Fix the generated MANIFEST.MF OSGi integration test in the next commit. commit 3152aa2b5e39cf2d3b81f8400488c0672e922b8d Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Fri Oct 5 16:58:29 2012 +0800 Fix the startup of the servlet. setInitOrder(0) was working in jetty-7 and jetty-8 but not in jetty-9 anymore. setInitOrder(1) is fine. commit 8038d314f4f423e8608fd09dd42b840e101a0c13 Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Thu Oct 4 17:53:28 2012 +0800 Upgrade to pax-exam-2.6 commit 7136fa88e2410ac345b6ae0657d882c7e9714c0b Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Thu Oct 4 17:53:07 2012 +0800 Support for felix-3.x and felix-4.x commit 0bcc6b0d8ed5144150f90f578a90c558419349d1 Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Thu Oct 4 17:53:28 2012 +0800 Upgrade to pax-exam-2.6 commit 2e17466624650df433b6c5f11abafb56539ee740 Author: Hugues Malphettes <hmalphettes@gmail.com> Date: Thu Oct 4 17:53:07 2012 +0800 Support for felix-3.x and felix-4.x
2012-10-06 05:26:14 -04:00
<logback-version>0.9.29</logback-version>
<slf4j-version>1.6.1</slf4j-version>
</properties>
<modules>
<module>jetty-osgi-boot</module>
<module>jetty-osgi-boot-jsp</module>
<module>jetty-osgi-boot-warurl</module>
<module>jetty-osgi-httpservice</module>
<module>test-jetty-osgi-webapp</module>
<module>test-jetty-osgi-context</module>
2016-07-19 22:26:41 -04:00
<module>test-jetty-osgi-fragment</module>
<module>jetty-osgi-alpn</module>
</modules>
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>[1.8,1.9)</jdk>
</activation>
<modules>
<module>test-jetty-osgi</module>
</modules>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>META-INF/..</directory>
<filtering>true</filtering>
<excludes>
<exclude>**/.*</exclude>
<exclude>**/*.jar</exclude>
<exclude>.settings/**/*</exclude>
<exclude>pom.xml</exclude>
<!-- exclude>META-INF/**/*</exclude -->
<exclude>jettyhome/**/*</exclude>
<exclude>src/**/*</exclude>
<exclude>target/**/*</exclude>
<exclude>build.properties</exclude>
</excludes>
<includes>
<include>META-INF/**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<manifest>prevent/overwriting/by/pointing/to/nonexisting/MANIFEST.MF</manifest>
<pde>true</pde>
<downloadSources>true</downloadSources>
<sourceExcludes>
<sourceExclude>**/.svn/**</sourceExclude>
</sourceExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-websocket</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-deploy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-nested</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi.services</artifactId>
<version>${osgi-services-version}</version>
2012-09-24 01:04:57 -04:00
<exclusions>
<exclusion>
<!-- we use the servlet jar from orbit -->
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi</artifactId>
<version>${osgi-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.equinox.http</groupId>
<artifactId>servlet</artifactId>
<version>${equinox-http-servlet-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback-version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>