Information

0
Story Points

Technologies

Maven XML
  • Maven POM (pom.xml)
    Maven Project Object Model (POM) File
<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>
  <groupId>org.jboss.windup.tests</groupId>
  <artifactId>example-weblogic-ejb-ear</artifactId>
  <version>0.0.1</version>
  <packaging>ear</packaging>
  <name>Example Weblogic EJB EAR</name>
  <description>Packages the Weblogic EJB example war in an ear</description>
  <dependencies>
    <dependency>
      <groupId>org.jboss.windup.tests</groupId>
      <artifactId>example-weblogic-ejb-war</artifactId>
      <version>0.0.1</version>
      <type>war</type>
    </dependency>
  </dependencies>
  
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-ear-plugin</artifactId>
        <version>2.9</version>
        <configuration>
          <defaultJavaBundleDir>lib/</defaultJavaBundleDir>
          <skinnyWars>true</skinnyWars>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
Page generated: 9 Apr 2019, 10:30:17