Here is my pom.xml
<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>
| <groupId>org.orm-sys.ejb3</groupId>
| <artifactId>ormsys-ejb31-embeddable</artifactId>
| <packaging>jar</packaging>
| <version>1.0-SNAPSHOT</version>
| <name>ormsys-ejb31-embeddable</name>
| <url>http://wwww.orm-sys.org</url>
|
| <build>
| <plugins>
| <!-- Specify the compiler options and settings -->
| <plugin>
| <groupId>org.apache.maven.plugins</groupId>
| <artifactId>maven-compiler-plugin</artifactId>
| <version>2.0.2</version>
| <configuration>
| <source>1.5</source>
| <target>1.5</target>
| <showDeprecation>false</showDeprecation>
| <showWarnings>false</showWarnings>
| </configuration>
| </plugin>
| </plugins>
| </build>
|
| <repositories>
| <repository>
| <id>jboss-snapshots</id>
| <name>JBoss Snapshot Repository</name>
| <
url>http://snapshots.jboss.org/maven2</url>
| <releases>
| <enabled>false</enabled>
| </releases>
| <snapshots>
| <enabled>true</enabled>
| </snapshots>
| </repository>
| <repository>
| <id>jboss-releases</id>
| <name>JBoss Release Repository</name>
| <
url>http://repository.jboss.org/maven2</url>
| <releases>
| <enabled>true</enabled>
| </releases>
| <snapshots>
| <enabled>false</enabled>
| </snapshots>
| </repository>
| </repositories>
|
| <dependencies>
| <dependency>
| <groupId>org.jboss.ejb3</groupId>
| <artifactId>jboss-ejb3-embedded</artifactId>
| <version>1.0.0-SNAPSHOT</version>
| </dependency>
| <dependency>
| <groupId>junit</groupId>
| <artifactId>junit</artifactId>
| <version>[4,)</version>
| <scope>test</scope>
| </dependency>
| </dependencies>
|
| </project>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4188364#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...