All Downloads are FREE. Search and download functionalities are using the official Maven repository.

project-template.bundles.target-definition.pom.xml Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
<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>
	<artifactId>target-definition</artifactId>
	<packaging>pom</packaging>
	<name>${project-name} Target Definition</name>

	<parent>
		<artifactId>bundles</artifactId>
		<groupId>${project-name}</groupId>
		<version>1.0.0-SNAPSHOT</version>
	</parent>

	<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>1.3</version>
				<executions>
					<execution>
						<id>attach-artifacts</id>
						<phase>package</phase>
						<goals>
							<goal>attach-artifact</goal>
						</goals>
						<configuration>
							<artifacts>
								<artifact>
									<file>chon.target</file>
									<type>target</type>
									<classifier>chon</classifier>
								</artifact>
							</artifacts>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy