route-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.fiorano.openesb</groupId>
<artifactId>route-api</artifactId>
<version>0.1.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<!--
Copyright (c) Fiorano Software and affiliates. All rights reserved. http://www.fiorano.com
The software in this package is published under the terms of the CPAL v1.0
license, a copy of which has been included with this distribution in the
LICENSE.txt file.
-->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.fiorano.openesb</groupId>
<artifactId>OpenESBProject</artifactId>
<version>0.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>route-api</artifactId>
<packaging>bundle</packaging>
<name>Route API</name>
<description>
Route API is generic communication model between two ports of a microservice.
It could be implemented using any protocol, preferably which can hold long living connections.
</description>
<url>https://github.com/FioranoSoftware/Fiorano-OpenESB/tree/master/route-api</url>
<licenses>
<license>
<name>CPAL, Version 1.0</name>
<url>http://www.fiorano.com/products/opensource/esb-core/license.php</url>
</license>
</licenses>
<properties>
<maven-bundle-plugin.version>3.0.0</maven-bundle-plugin.version>
<osgi.version>6.0.0</osgi.version>
</properties>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fiorano.openesb</groupId>
<artifactId>transport-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.7.0-4</version>
</dependency>
<dependency>
<groupId>com.fiorano.openesb</groupId>
<artifactId>application-repo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fiorano.openesb</groupId>
<artifactId>utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.owlike</groupId>
<artifactId>genson</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Activator>com.fiorano.openesb.route.bundle.Activator</Bundle-Activator>
<Export-Package>
com.fiorano.openesb.route*;version=${project.version}
</Export-Package>
<Import-Package>
javax.jms;version="[1.0,2.0]";resolution:="optional",*
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>