/opennms-assemblies/remote-poller-standalone/pom.xml
https://github.com/ajakubo1/opennms · XML · 57 lines · 57 code · 0 blank · 0 comment · 0 complexity · 721cd2f8758873bfb2ef8aa10c4a4505 MD5 · raw file
- <?xml version="1.0"?>
- <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/maven-v4_0_0.xsd">
- <parent>
- <groupId>org.opennms</groupId>
- <artifactId>org.opennms.assemblies</artifactId>
- <version>1.13.5-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.opennms.assemblies</groupId>
- <artifactId>org.opennms.assemblies.remote-poller-standalone</artifactId>
- <packaging>jar</packaging>
- <name>OpenNMS Remote Poller (Standalone)</name>
- <url>http://maven.apache.org</url>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- <resource>
- <filtering>true</filtering>
- <directory>src/main/filtered</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/assembly/remote-poller.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.opennms.assemblies</groupId>
- <artifactId>org.opennms.assemblies.remote-poller-onejar</artifactId>
- <version>${project.version}</version>
- <classifier>signed-jar-with-dependencies</classifier>
- </dependency>
- </dependencies>
- </project>