9e8067c946
tasks.
71 lines
2.4 KiB
XML
71 lines
2.4 KiB
XML
<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>
|
|
<parent>
|
|
<groupId>org.x4o.tool</groupId>
|
|
<artifactId>x4o-tool</artifactId>
|
|
<version>0.8.7-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>x4o-tool-maven-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<name>x4o-tool-maven-plugin</name>
|
|
<description>x4o-tool-maven-plugin</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-eld-doc</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>${maven-plugin-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
<version>${maven-plugin-annotations.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.plugin-testing</groupId>
|
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
|
<version>${maven-plugin-testing-harness.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- generated help mojo has a dependency to plexus-utils -->
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>${plexus-utils.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
<version>${maven-plugin-plugin.version}</version>
|
|
<configuration>
|
|
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>mojo-descriptor</id>
|
|
<goals><goal>descriptor</goal></goals>
|
|
</execution>
|
|
<execution>
|
|
<id>mojo-help</id>
|
|
<goals><goal>helpmojo</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|