2019-06-24 11:42:39 -04: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/maven-v4_0_0.xsd">
|
2023-10-11 21:51:36 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-08-29 12:08:52 -04:00
|
|
|
<parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9</artifactId>
|
2024-04-26 08:42:57 -04:00
|
|
|
<version>12.1.0-SNAPSHOT</version>
|
2012-08-29 12:08:52 -04:00
|
|
|
</parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-ee9-jspc-maven-plugin</artifactId>
|
2012-08-29 12:08:52 -04:00
|
|
|
<packaging>maven-plugin</packaging>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>EE9 :: Jetty JSPC Maven Plugin</name>
|
2012-08-29 12:08:52 -04:00
|
|
|
<properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.jspc.plugin</bundle-symbolic-name>
|
2022-10-09 22:52:40 -04:00
|
|
|
<jacoco.skip>true</jacoco.skip>
|
2012-08-29 12:08:52 -04:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
2021-11-08 23:40:54 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2024-06-10 21:31:16 -04:00
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
2021-11-08 23:40:54 -05:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
2023-10-05 20:10:07 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
2023-10-05 20:10:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-apache-jsp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2023-10-05 20:10:07 -04:00
|
|
|
</dependency>
|
2018-04-03 03:30:25 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-glassfish-jstl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-04-03 03:30:25 -04:00
|
|
|
</dependency>
|
2012-08-29 12:08:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2023-10-05 20:10:07 -04:00
|
|
|
<scope>provided</scope>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
2012-09-20 14:42:21 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
2012-09-20 14:42:21 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
2014-04-02 23:27:27 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
<scope>provided</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2018-09-04 00:25:10 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-09-04 00:25:10 -04:00
|
|
|
</dependency>
|
2014-04-02 23:27:27 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
2014-04-02 23:27:27 -04:00
|
|
|
</dependency>
|
2016-06-07 04:23:38 -04:00
|
|
|
</dependencies>
|
2023-10-11 21:51:36 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<scriptVariables>
|
|
|
|
<maven.surefire.plugin.version>${maven.surefire.plugin.version}</maven.surefire.plugin.version>
|
|
|
|
</scriptVariables>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>exec-plugin-doc</id>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
|
|
|
<goal>helpmojo</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-08-29 12:08:52 -04:00
|
|
|
</project>
|