1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.yakindu.sct</groupId>
- <artifactId>org.yakindu.sct.releng</artifactId>
- <version>3.4.0-SNAPSHOT</version>
- <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
- </parent>
- <artifactId>org.yakindu.sct.doc.user</artifactId>
- <groupId>org.yakindu.sct.plugins</groupId>
- <packaging>eclipse-plugin</packaging>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.8</version>
- <executions>
- <execution>
- <id>generate-help</id>
- <phase> generate-sources </phase>
- <configuration>
- <target>
- <property environment="env">
- <env key="LANG" value="en_US"/>
- </property>
- </target>
- <tasks>
- <ant dir="${project.basedir}" antfile="build.xml">
- </ant>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-help</id>
- <phase> clean </phase>
- <configuration>
- <target>
- <ant dir="${project.basedir}" antfile="build.xml" target="clean">
- </ant>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.yakindu.docs</groupId>
- <artifactId>yakindu-docs-maven-plugin</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
- <pluginRepositories>
- <pluginRepository>
- <id>releases</id>
- <name>Nexus projects.itemis.de</name>
- <url>https://projects.itemis.de/nexus/content/repositories/OSR/</url>
- </pluginRepository>
- <pluginRepository>
- <id>snapshots</id>
- <name>Nexus projects.itemis.de</name>
- <url>https://projects.itemis.de/nexus/content/repositories/OSS/</url>
- </pluginRepository>
- </pluginRepositories>
- </project>
|