/opennms-assemblies/rxtx-assembly/pom.xml
https://github.com/ajakubo1/opennms · XML · 77 lines · 76 code · 0 blank · 1 comment · 0 complexity · aac58c886e755262097ce7e8e0f42855 MD5 · raw file
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <artifactId>opennms</artifactId>
- <groupId>org.opennms</groupId>
- <version>1.13.5-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>opennms-rxtx-assembly</artifactId>
- <packaging>pom</packaging>
- <name>OpenNMS RXTX Assembly</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>process-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.rxtx</groupId>
- <artifactId>rxtx-osgi</artifactId>
- <version>2.2-pre2</version>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/assembly/rxtx.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <!-- for finding rxtx-osgi, can't unpack transitive org.opennms.dependencies:rxtx-dependencies directly above -->
- <repositories>
- <repository>
- <snapshots>
- <enabled>false</enabled>
- <updatePolicy>${updatePolicy}</updatePolicy>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- <updatePolicy>${updatePolicy}</updatePolicy>
- </releases>
- <id>opennms-repo</id>
- <name>OpenNMS Maven Repository</name>
- <url>http://maven.opennms.org/content/groups/opennms.org-release</url>
- </repository>
- </repositories>
- </project>