Information

0
Story Points

Technologies

Maven XML
  • Maven POM
    Maven Project Object Model (POM) File
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.migration.support</groupId>
  4. <artifactId>migration-support</artifactId>
  5. <version>1.0.0</version>
  6. <name>Sample Migration</name>
  7. <description>Used only to support migration activities.</description>
  8. <dependencies>
  9.     <dependency>
  10.         <groupId>log4j</groupId>
  11.         <artifactId>log4j</artifactId>
  12.         <version>1.2.12</version>
  13.         <scope>provided</scope>
  14.     </dependency>
  15.     <dependency>
  16.         <groupId>javax.servlet</groupId>
  17.         <artifactId>servlet-api</artifactId>
  18.         <version>2.3</version>
  19.         <scope>provided</scope>
  20.     </dependency>
  21.     <dependency>
  22.         <groupId>javax.ejb</groupId>
  23.         <artifactId>ejb-api</artifactId>
  24.         <version>3.0</version>
  25.         <scope>provided</scope>
  26.     </dependency>
  27.     <dependency>
  28.         <groupId>javaee</groupId>
  29.         <artifactId>javaee-api</artifactId>
  30.         <version>5</version>
  31.         <scope>provided</scope>
  32.     </dependency>
  33. </dependencies>
  34. </project>