openesb-standalone/openesb-standalone-bootstrap/pom.xml

51 lines
1.9 KiB
XML

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.open-esb.runtime.standalone</groupId>
<artifactId>openesb-standalone</artifactId>
<version>3.0.6-SNAPSHOT</version>
</parent>
<artifactId>openesb-standalone-bootstrap</artifactId>
<name>OpenESB - Standalone - Bootstrap</name>
<description>OpenESB runtime in standalone mode - Bootstrap</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<!--
TODO: Check that this one is really needed ?
-->
<manifestEntries>
<Main-Class>net.openesb.standalone.startup.Bootstrap</Main-Class>
<Class-Path>jbi.jar jbi-ext.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.open-esb.runtime.standalone</groupId>
<artifactId>openesb-standalone-container</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>${jansi.version}</version>
</dependency>
</dependencies>
</project>