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">
|
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>
|
2023-08-29 17:55:36 -04:00
|
|
|
<version>12.0.2-SNAPSHOT</version>
|
2012-08-29 12:08:52 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
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
|
|
|
<skipTests>true</skipTests>
|
|
|
|
<jacoco.skip>true</jacoco.skip>
|
2012-08-29 12:08:52 -04:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2015-04-22 20:18:05 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-08-29 12:08:52 -04:00
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>exec-plugin-doc</id>
|
2018-04-03 03:30:25 -04:00
|
|
|
<phase>process-classes</phase>
|
2012-08-29 12:08:52 -04:00
|
|
|
<goals>
|
2015-04-22 20:18:05 -04:00
|
|
|
<goal>descriptor</goal>
|
2012-08-29 12:08:52 -04:00
|
|
|
<goal>helpmojo</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-05-29 18:33:25 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<scriptVariables>
|
2021-09-22 10:54:52 -04:00
|
|
|
<maven.surefire.plugin.version>${maven.surefire.plugin.version}</maven.surefire.plugin.version>
|
2018-05-29 18:33:25 -04:00
|
|
|
</scriptVariables>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-08-29 12:08:52 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2021-11-08 23:40:54 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
2018-04-03 03:30:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-08-29 12:08:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-10-18 12:15:29 -04:00
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
2012-08-29 12:08:52 -04:00
|
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
2012-09-20 14:42:21 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-08-29 12:08:52 -04:00
|
|
|
</dependency>
|
2014-04-02 23:27:27 -04:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-apache-jsp</artifactId>
|
2014-04-02 23:27:27 -04:00
|
|
|
<version>${project.version}</version>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2018-09-04 00:25:10 -04:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-glassfish-jstl</artifactId>
|
2018-09-04 00:25:10 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-04-02 23:27:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</dependency>
|
2016-06-07 04:23:38 -04:00
|
|
|
</dependencies>
|
2012-08-29 12:08:52 -04:00
|
|
|
</project>
|