2021-10-15 13:11:55 +00:00
|
|
|
<?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/xsd/maven-4.0.0.xsd"
|
|
|
|
>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-06-09 12:51:26 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sourceforge.plantuml</groupId>
|
|
|
|
<artifactId>plantumlservlet-parent</artifactId>
|
|
|
|
<version>1-SNAPSHOT</version>
|
|
|
|
<relativePath>pom.parent.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2021-10-15 13:11:55 +00:00
|
|
|
<artifactId>plantumlservlet</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>8</java.version>
|
|
|
|
|
|
|
|
<!-- build plugin management -->
|
2023-06-09 12:51:26 +00:00
|
|
|
<!-- no JDK8 support starting version 10.0.0 -->
|
|
|
|
<checkstyle.version>9.3</checkstyle.version>
|
2021-10-15 13:11:55 +00:00
|
|
|
|
|
|
|
<!-- plugins -->
|
2023-06-09 12:51:26 +00:00
|
|
|
<!-- no JDK8 support starting version 2.5.0 -->
|
|
|
|
<resources-optimizer-maven-plugin.version>2.4.4</resources-optimizer-maven-plugin.version>
|
2021-10-15 13:11:55 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
<version>5.0.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
<version>${apache-jsp.version}</version>
|
|
|
|
<scope>${apache-jsp.scope}</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<version>${jetty-annotations.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-12-12 14:01:14 +00:00
|
|
|
|
2021-10-15 13:11:55 +00:00
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${jetty-server.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|