/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

  1. <?xml version="1.0"?>
  2. <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">
  3. <parent>
  4. <groupId>org.opennms</groupId>
  5. <artifactId>org.opennms.assemblies</artifactId>
  6. <version>1.13.5-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>org.opennms.assemblies</groupId>
  10. <artifactId>org.opennms.assemblies.remote-poller-standalone</artifactId>
  11. <packaging>jar</packaging>
  12. <name>OpenNMS Remote Poller (Standalone)</name>
  13. <url>http://maven.apache.org</url>
  14. <build>
  15. <resources>
  16. <resource>
  17. <directory>src/main/resources</directory>
  18. </resource>
  19. <resource>
  20. <filtering>true</filtering>
  21. <directory>src/main/filtered</directory>
  22. </resource>
  23. </resources>
  24. <plugins>
  25. <plugin>
  26. <artifactId>maven-deploy-plugin</artifactId>
  27. <configuration>
  28. <skip>true</skip>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <artifactId>maven-assembly-plugin</artifactId>
  33. <configuration>
  34. <descriptors>
  35. <descriptor>src/assembly/remote-poller.xml</descriptor>
  36. </descriptors>
  37. </configuration>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>single</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.opennms.assemblies</groupId>
  52. <artifactId>org.opennms.assemblies.remote-poller-onejar</artifactId>
  53. <version>${project.version}</version>
  54. <classifier>signed-jar-with-dependencies</classifier>
  55. </dependency>
  56. </dependencies>
  57. </project>