openesb-standalone/openesb-standalone-container/pom.xml

124 lines
4.3 KiB
XML
Raw Normal View History

2014-12-02 23:30:38 +03:00
<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">
2013-06-20 19:06:00 +04:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.open-esb.runtime.standalone</groupId>
2013-06-20 19:06:00 +04:00
<artifactId>openesb-standalone</artifactId>
<version>3.0.3</version>
2013-06-20 19:06:00 +04:00
</parent>
2014-03-03 20:06:03 +04:00
<artifactId>openesb-standalone-container</artifactId>
2013-06-20 19:06:00 +04:00
2014-03-03 20:06:03 +04:00
<name>OpenESB - Standalone - Container</name>
<description>OpenESB runtime in standalone mode - Container</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
2014-03-03 20:06:03 +04:00
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaFiles>OEContext.xsd</schemaFiles>
2014-03-04 20:11:47 +04:00
<schemaDirectory>${project.basedir}/src/main/xsd</schemaDirectory>
2014-03-03 20:06:03 +04:00
<packageName>net.openesb.standalone.naming.jaxb</packageName>
</configuration>
</plugin>
2014-06-06 13:12:51 +04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
2014-03-03 20:06:03 +04:00
</plugins>
</build>
2013-06-20 19:06:00 +04:00
<dependencies>
<!-- OpenESB Core dependencies -->
2013-06-20 19:06:00 +04:00
<dependency>
<groupId>net.open-esb.core</groupId>
2013-06-20 19:06:00 +04:00
<artifactId>framework-core</artifactId>
<exclusions>
<exclusion>
<artifactId>appserv-ext</artifactId>
<groupId>glassfish</groupId>
</exclusion>
</exclusions>
2013-06-20 19:06:00 +04:00
</dependency>
<!-- OpenESB Rest API-->
<dependency>
2014-12-02 23:26:38 +03:00
<groupId>net.open-esb.admin</groupId>
<artifactId>openesb-rest-api</artifactId>
<version>${openesb-rest-api.version}</version>
</dependency>
<!-- Transaction management -->
2013-06-20 19:06:00 +04:00
<dependency>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jta</artifactId>
<version>${atomikos.version}</version>
</dependency>
2014-03-03 20:06:03 +04:00
<!-- Security support -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>${shiro.version}</version>
</dependency>
<!-- Cluster support
<dependency>
<groupId>org.jgroups</groupId>
<artifactId>jgroups</artifactId>
<version>${jgroups.version}</version>
</dependency>
-->
<!-- Config support -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
2014-03-03 20:06:03 +04:00
<!-- JNDI support -->
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-catalina</artifactId>
<version>${tomcat.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Injection support -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${guice.version}</version>
</dependency>
2014-03-05 21:01:45 +04:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
2013-06-20 19:06:00 +04:00
</dependencies>
</project>