2017-06-06 11:55:12 -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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2018-08-30 11:48:22 -04:00
|
|
|
<version>9.4.13-SNAPSHOT</version>
|
2017-06-06 11:55:12 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-jspc-maven-plugin</artifactId>
|
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<name>Jetty :: Jetty JSPC Maven Plugin</name>
|
|
|
|
<properties>
|
2017-08-08 12:47:04 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.jspc.plugin</bundle-symbolic-name>
|
2018-03-21 07:11:16 -04:00
|
|
|
<it.debug>false</it.debug>
|
2017-06-06 11:55:12 -04:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2017-08-08 12:47:04 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2017-06-06 11:55:12 -04:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2017-08-08 12:47:04 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2017-06-06 11:55:12 -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>
|
2017-06-06 11:55:12 -04:00
|
|
|
<goals>
|
2017-08-08 12:47:04 -04:00
|
|
|
<goal>descriptor</goal>
|
2017-06-06 11:55:12 -04:00
|
|
|
<goal>helpmojo</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
|
|
|
<debug>${it.debug}</debug>
|
|
|
|
<addTestClassPath>true</addTestClassPath>
|
|
|
|
<timeoutInSeconds>60</timeoutInSeconds>
|
|
|
|
<projectsDirectory>src/it</projectsDirectory>
|
|
|
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
|
|
|
<pomIncludes>
|
|
|
|
<pomInclude>*/pom.xml</pomInclude>
|
|
|
|
</pomIncludes>
|
|
|
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
|
|
|
<settingsFile>src/it/settings.xml</settingsFile>
|
|
|
|
<scriptVariables>
|
|
|
|
<surefireVersion>${surefireVersion}</surefireVersion>
|
|
|
|
</scriptVariables>
|
|
|
|
<skipInvocation>${skipTests}</skipInvocation>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-06-06 11:55:12 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
|
</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>
|
2017-06-06 11:55:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-tools-api</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.8.4</version>
|
|
|
|
</dependency>
|
2017-08-08 12:47:04 -04:00
|
|
|
</dependencies>
|
2017-06-06 11:55:12 -04:00
|
|
|
<reporting>
|
2017-08-08 12:47:04 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
|
|
|
</configuration>
|
|
|
|
<reportSets>
|
2017-06-06 11:55:12 -04:00
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>project-team</report>
|
|
|
|
<report>mailing-list</report>
|
|
|
|
<report>cim</report>
|
|
|
|
<report>issue-tracking</report>
|
|
|
|
<report>license</report>
|
|
|
|
<report>scm</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2017-08-08 12:47:04 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2017-06-06 11:55:12 -04:00
|
|
|
</reporting>
|
|
|
|
</project>
|