<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> <artifactId>jee-example</artifactId> <groupId>org.windup.example</groupId> <version>1.0.0</version> <relativePath>..</relativePath> </parent> <artifactId>jee-example-services</artifactId> <dependencies> <dependency> <groupId>org.migration.support</groupId> <artifactId>migration-support</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.6</version> </dependency> <dependency> <groupId>javax.ejb</groupId> <artifactId>ejb-api</artifactId> <version>3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javaee</groupId> <artifactId>javaee-api</artifactId> <version>5</version> <scope>provided</scope> </dependency> </dependencies> <packaging>ejb</packaging> <name>JEE Example EJB Services</name> </project>