2009-11-02 19:41:22 -05:00
|
|
|
<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>
|
2021-06-29 11:51:22 -04:00
|
|
|
<version>10.0.7-SNAPSHOT</version>
|
2009-11-02 19:41:22 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-osgi-boot</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: Boot</name>
|
|
|
|
<description>Jetty OSGi Boot bundle</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.boot</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.osgi.boot.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2009-11-02 19:41:22 -05:00
|
|
|
<dependencies>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
2021-06-17 19:30:18 -04:00
|
|
|
<version>${project.version}</version>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2009-11-02 19:41:22 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
2021-06-17 19:30:18 -04:00
|
|
|
<version>${project.version}</version>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
2021-06-17 19:30:18 -04:00
|
|
|
<version>${project.version}</version>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
2011-01-06 13:04:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
2021-06-17 19:30:18 -04:00
|
|
|
<version>${project.version}</version>
|
2011-01-06 13:04:58 -05:00
|
|
|
</dependency>
|
2009-11-02 19:41:22 -05:00
|
|
|
<dependency>
|
2020-12-02 12:21:18 -05:00
|
|
|
<groupId>org.eclipse.platform</groupId>
|
2016-06-06 15:28:51 -04:00
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-12-02 12:21:18 -05:00
|
|
|
<groupId>org.eclipse.platform</groupId>
|
2012-09-24 01:04:57 -04:00
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2019-06-24 11:42:39 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
2020-11-03 09:46:27 -05:00
|
|
|
<target>
|
2019-06-24 11:42:39 -04:00
|
|
|
<!--delete file="target/classes/META-INF/MANIFEST.MF" /-->
|
|
|
|
<copy todir="target/classes/jettyhome">
|
|
|
|
<fileset dir="jettyhome">
|
|
|
|
<exclude name="**/*.log" />
|
|
|
|
</fileset>
|
|
|
|
</copy>
|
2020-11-03 09:46:27 -05:00
|
|
|
</target>
|
2019-06-24 11:42:39 -04:00
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.eclipse.jetty.osgi.boot;singleton:=true</Bundle-SymbolicName>
|
|
|
|
<Bundle-Activator>org.eclipse.jetty.osgi.boot.JettyBootstrapActivator</Bundle-Activator>
|
2020-07-14 08:22:38 -04:00
|
|
|
<DynamicImport-Package>org.eclipse.jetty.*;version="[$(version;===;${parsedVersion.osgiVersion}),$(version;+;${parsedVersion.osgiVersion}))"</DynamicImport-Package>
|
2021-06-10 10:04:50 -04:00
|
|
|
<Import-Package>
|
|
|
|
${osgi.slf4j.import.packages},
|
|
|
|
javax.mail;version="1.4.0";resolution:=optional,
|
|
|
|
javax.mail.event;version="1.4.0";resolution:=optional,
|
|
|
|
javax.mail.internet;version="1.4.0";resolution:=optional,
|
|
|
|
javax.mail.search;version="1.4.0";resolution:=optional,
|
|
|
|
javax.mail.util;version="1.4.0";resolution:=optional,
|
2021-09-22 10:54:52 -04:00
|
|
|
javax.servlet;version="[$(version;==;${jakarta.servlet.api.version}),$(version;+;${jakarta.servlet.api.version}))",
|
|
|
|
javax.servlet.http;version="[$(version;==;${jakarta.servlet.api.version}),$(version;+;${jakarta.servlet.api.version}))",
|
2021-06-10 10:04:50 -04:00
|
|
|
javax.transaction;version="1.1.0";resolution:=optional,
|
|
|
|
javax.transaction.xa;version="1.1.0";resolution:=optional,
|
|
|
|
org.objectweb.asm;version="$(version;=;${asm.version})";resolution:=optional,
|
|
|
|
org.osgi.framework,
|
|
|
|
org.osgi.service.cm;version="1.4.0",
|
|
|
|
org.osgi.service.event;version="1.4.0",
|
|
|
|
org.osgi.service.packageadmin,
|
|
|
|
org.osgi.service.startlevel;version="1.0.0",
|
|
|
|
org.osgi.service.url;version="1.0.0",
|
|
|
|
org.osgi.util.tracker;version="1.3.0",
|
|
|
|
org.xml.sax,
|
|
|
|
org.xml.sax.helpers,
|
|
|
|
org.eclipse.jetty.annotations;resolution:=optional,
|
|
|
|
*
|
2019-06-24 11:42:39 -04:00
|
|
|
</Import-Package>
|
|
|
|
<Require-Capability>
|
|
|
|
osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"
|
|
|
|
</Require-Capability>
|
|
|
|
<Provide-Capability>
|
|
|
|
osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.webapp.Configuration
|
|
|
|
</Provide-Capability>
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-09-24 01:04:57 -04:00
|
|
|
|
2010-04-27 15:28:44 -04:00
|
|
|
</project>
|