This is my entire pom.xml in the stateless dir:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-tutorial-common</artifactId>
<version>1.1.1</version>
<relativePath>../common/</relativePath>
</parent>
<properties>
<ejb3.tutorial.client>org.jboss.tutorial.stateless.client.Client</ejb3.tutorial.client>
<jboss.ejb3.tutorial.client.jvmargs>-verbose:class</jboss.ejb3.tutorial.client.jvmargs>
</properties>
<artifactId>jboss-ejb3-tutorial-stateless</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>EJB3.0 Stateless Bean Tutorial</name>
<url>http://labs.jboss.com/jbossejb3/</url>
<description>
Tutorial for Stateless EJB 3.0
</description>
<repositories>
<repository>
<id>Maven EJB3</id>
<url>http://repository.jboss.org/maven2/</url>
</repository>
</repositories>
</project>