2024-01-03 04:12:56 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04: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">
|
2024-01-03 04:12:56 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2024-06-27 12:16:43 -04:00
|
|
|
<version>10.0.23-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-xml</artifactId>
|
|
|
|
<name>Jetty :: XML utilities</name>
|
|
|
|
<description>The jetty xml utilities.</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.xml</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.xml.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-03-19 18:46:41 -04:00
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependency>
|
2012-09-20 14:42:21 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2024-01-03 04:12:56 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Require-Capability>osgi.serviceloader; filter:="(osgi.serviceloader=org.eclipse.jetty.xml.ConfigurationProcessorFactory)";resolution:=optional;cardinality:=multiple, osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional</Require-Capability>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2024-06-20 11:13:54 -04:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<configuration>
|
2024-06-20 11:13:54 -04:00
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
2024-01-03 04:12:56 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-06-20 10:32:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2024-06-20 11:13:54 -04:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2024-06-20 10:32:47 -04:00
|
|
|
<configuration>
|
2024-06-20 11:13:54 -04:00
|
|
|
<argLine>@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.xml=org.eclipse.jetty.logging</argLine>
|
2024-06-20 10:32:47 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-01-03 04:12:56 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-03-24 17:07:27 -04:00
|
|
|
</project>
|