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> <!-- standard parent --> <parent> <groupId>org.ikasan</groupId> <artifactId>ikasan-build</artifactId> <version>0.9.0</version> <relativePath /> </parent> <artifactId>weblogic-ikasan-console-ear</artifactId> <packaging>ear</packaging> <name>Weblogic specific configuration packaging of the Console as an EAR</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ear-plugin</artifactId> <version>2.3.2</version> <configuration> <filtering>false</filtering> <defaultJavaBundleDir>/APP-INF/lib</defaultJavaBundleDir> <modules> <webModule> <groupId>org.ikasan</groupId> <artifactId>console</artifactId> <contextRoot>/console</contextRoot> </webModule> </modules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- console war --> <dependency> <groupId>org.ikasan</groupId> <artifactId>console</artifactId> <version>0.9.0</version> <type>war</type> </dependency> </dependencies> </project>