2013-04-11 07:26:38 +00:00
|
|
|
<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.plugin</groupId>
|
|
|
|
<artifactId>x4o-plugin</artifactId>
|
2013-08-09 00:09:58 +00:00
|
|
|
<version>0.8.7-SNAPSHOT</version>
|
2013-04-11 07:26:38 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>x4o-plugin-maven</artifactId>
|
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<name>x4o-plugin-maven</name>
|
|
|
|
<description>x4o-plugin-maven</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.x4o</groupId>
|
|
|
|
<artifactId>x4o-driver</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.x4o</groupId>
|
2013-05-29 20:25:41 +00:00
|
|
|
<artifactId>x4o-eld-doc</artifactId>
|
2013-04-11 07:26:38 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-testing</groupId>
|
|
|
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
|
|
|
<version>2.0</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>3.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2013-04-14 19:59:26 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<version>3.2</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>
|
2013-04-11 07:26:38 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
2013-04-14 19:59:26 +00:00
|
|
|
<id>build-site-x4o-support</id>
|
2013-04-11 07:26:38 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.x4o.plugin</groupId>
|
|
|
|
<artifactId>x4o-plugin-maven</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2013-04-14 19:59:26 +00:00
|
|
|
<id>build-site-x4o-support</id>
|
2013-04-11 07:26:38 +00:00
|
|
|
<phase>pre-site</phase>
|
|
|
|
<configuration>
|
2013-04-14 19:59:26 +00:00
|
|
|
<outputDirectory>${basedir}/../../target/site/x4o-support</outputDirectory>
|
2013-04-11 07:26:38 +00:00
|
|
|
<languages>
|
|
|
|
<cel>ALL</cel>
|
|
|
|
<eld>ALL</eld>
|
|
|
|
<test>ALL</test>
|
|
|
|
<swixml>2.0-3.0</swixml>
|
|
|
|
</languages>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>write-language-doc</goal>
|
2013-04-14 19:59:26 +00:00
|
|
|
<goal>write-language-schema</goal>
|
2013-04-11 07:26:38 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.x4o</groupId>
|
|
|
|
<artifactId>x4o-driver</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.x4o</groupId>
|
|
|
|
<artifactId>x4o-driver</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.x4o</groupId>
|
2013-05-29 20:25:41 +00:00
|
|
|
<artifactId>x4o-eld-doc</artifactId>
|
2013-04-11 07:26:38 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.odysseus.juel</groupId>
|
|
|
|
<artifactId>juel</artifactId>
|
|
|
|
<version>${juel.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|