<?xml version="1.0" encoding="UTF-8"?> <!-- /********************************************************************* * Copyright (c) 2022 Kentyou and others * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 **********************************************************************/ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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.eclipse.sensinact.gateway</groupId> <artifactId>sensinact-parent</artifactId> <version>0.0.2-SNAPSHOT</version> </parent> <groupId>org.eclipse.sensinact.gateway.distribution</groupId> <artifactId>distribution</artifactId> <version>0.0.2-SNAPSHOT</version> <packaging>pom</packaging> <name>Eclipse sensiNact Distribution</name> <description>This project contains code for launching sensiNact gateway instances</description> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> <comments>Except for 3rd party content and examples.</comments> </license> </licenses> <modules> <module>test-utils</module> <module>launcher</module> <module>features</module> <module>assembly</module> </modules> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <includes> <include>**/integration/**</include> </includes> <excludes combine.self="override" /> <failIfNoTests>true</failIfNoTests> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.3.0</version> </plugin> </plugins> </pluginManagement> </build> </project>