openesb-standalone/pom.xml

71 lines
2.6 KiB
XML
Raw Normal View History

2013-06-20 19:06:00 +04: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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.open-esb</groupId>
<artifactId>parent</artifactId>
2013-06-25 10:52:53 +04:00
<version>1.0.0</version>
2013-06-20 19:06:00 +04:00
</parent>
<groupId>net.open-esb</groupId>
<artifactId>openesb-standalone</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>OpenESB - Standalone</name>
<description>OpenESB runtime in standalone mode</description>
<modules>
<module>openesb-standalone-framework</module>
<module>openesb-standalone-bootstrap</module>
<module>openesb-standalone-naming</module>
2013-06-20 19:06:00 +04:00
<module>openesb-standalone-packaging</module>
</modules>
<properties>
<openesb.version>2.4.0-SNAPSHOT</openesb.version>
2014-01-24 15:42:38 +04:00
<openesb-components.version>2.3.2-SNAPSHOT</openesb-components.version>
<openesb-rest-api.version>1.0.0-SNAPSHOT</openesb-rest-api.version>
<openesb-web-console.version>1.0.0-SNAPSHOT</openesb-web-console.version>
2014-01-24 15:42:38 +04:00
<openesb-model-api.version>1.0.0-SNAPSHOT</openesb-model-api.version>
2014-01-22 12:54:20 +04:00
<openesb-oeadmin.version>1.0.0-SNAPSHOT</openesb-oeadmin.version>
2013-06-20 19:06:00 +04:00
<atomikos.version>3.8.0</atomikos.version>
<tomcat.version>7.0.47</tomcat.version>
<snakeyaml.version>1.13</snakeyaml.version>
<!--jgroups.version>3.4.2.Final</jgroups.version-->
2013-06-20 19:06:00 +04:00
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<!-- OpenESB Core -->
<dependency>
<groupId>net.open-esb</groupId>
2013-06-20 19:06:00 +04:00
<artifactId>framework-core</artifactId>
<version>${openesb.version}</version>
<exclusions>
<exclusion>
<groupId>jbiplatform</groupId>
<artifactId>jbi_compileconf</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
</project>