123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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>2.1.0-SNAPSHOT</version>
- <relativePath>../org.yakindu.sct.releng/pom.xml</relativePath>
- </parent>
- <artifactId>org.yakindu.sct.statechart.target</artifactId>
- <packaging>pom</packaging>
- <properties>
- <build-helper-version>1.3</build-helper-version>
- </properties>
- <profiles>
- <profile>
- <id>Indigo.target</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>${build-helper-version}</version>
- <executions>
- <!-- make target file available for incremental builds -->
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <artifact>
- <!-- note: the file name must be ${classifier}.target -->
- <file>INDIGO.target</file>
- <type>target</type>
- <classifier>INDIGO</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|