Red Hat Application Migration Toolkit
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ikasan</groupId> <artifactId>ikasan-build</artifactId> <version>0.9.0</version> <relativePath /> </parent> <artifactId>console</artifactId> <packaging>war</packaging> <name>Ikasan Console</name> <description>The web console for end users of the Ikasan Enterprise Integration Platform</description> <dependencies> <dependency> <groupId>org.ikasan</groupId> <artifactId>ikasan-eip</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>3.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>3.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.ikasan</groupId> <artifactId>console-jar</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>3.1.3.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <version>3.1.3.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <version>3.1.3.RELEASE</version> </dependency> <dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-j2ee</artifactId> <version>1.4-rc3</version> <scope>provided</scope> </dependency> <!-- This jar is added because jboss startup throwing exception Failed to load class "org.slf4j.impl.StaticLoggerBinder" TODO: UPDATE to 1.5.11 When Jboss can handle it? --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.8</version> </dependency> </dependencies> </project>