openesb-components/packaging/extras/pom.xml

45 lines
1.7 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<artifactId>global-common</artifactId>
<groupId>open-jbi-components</groupId>
<version>1.1</version>
<relativePath>../../global-common</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>open-jbi-components</groupId>
<version>${jbicomps.currentVersion}</version>
<artifactId>bogus-ojc-extras</artifactId>
<name>ojc-packaging-extras</name>
<description>install extra artifacts for use in packaging project</description>
<build>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-jdtcore.jar</id>
<phase>clean</phase>
<goals><goal>install-file</goal></goals>
<configuration>
<groupId>com.bostechcorp.cbesb</groupId>
<artifactId>ChainBuilderESB-BC-TCPIP</artifactId>
<version>1.0</version>
<file>components/ChainBuilderESB-BC-TCPIP.jar</file>
<generatePom>true</generatePom>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- this project has no tests -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>