40 lines
1.4 KiB
XML
40 lines
1.4 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">
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.documentation</groupId>
|
|
<artifactId>documentation</artifactId>
|
|
<version>12.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jetty-asciidoctor-extensions</artifactId>
|
|
<name>Jetty :: Documentation :: AsciiDoctor Extensions</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctorj</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>jakarta.annotation</groupId>
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
</exclusion>
|
|
<!--
|
|
the pom of this dependencies has an unknown repository protocol
|
|
https://issues.apache.org/jira/browse/MENFORCER-393
|
|
it fail enforcer plugin
|
|
-->
|
|
<exclusion>
|
|
<groupId>org.jruby</groupId>
|
|
<artifactId>jruby-stdlib</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
<artifactId>test-distribution-common</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|