Sorry, this is the parent pom.xml :
| <?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">
| <modelVersion>4.0.0</modelVersion>
| <groupId>all-projects</groupId>
| <artifactId>all-projects</artifactId>
| <packaging>pom</packaging>
| <version>1.0-SNAPSHOT</version>
| <name>LTOBOA All Projects</name>
| <url>http://maven.apache.org</url>
|
| <modules>
| <module>monesb</module>
| </modules>
| <repositories>
| <repository>
| <id>Codehaus Snapshots</id>
| <
url>http://snapshots.repository.codehaus.org/</url>
| <snapshots>
| <enabled>true</enabled>
| </snapshots>
| <releases>
| <enabled>false</enabled>
| </releases>
| </repository>
| </repositories>
|
| </project>
|
This is the pom.xml of my esb project :
| <?xml version="1.0"?>
| <project>
| <parent>
| <artifactId>all-projects</artifactId>
| <groupId>all-projects</groupId>
| <version>1.0-SNAPSHOT</version>
| </parent>
|
| <modelVersion>4.0.0</modelVersion>
| <groupId>fr.monGroupId</groupId>
| <artifactId>monesb</artifactId>
| <name>monesb</name>
| <version>1.0-SNAPSHOT</version>
| <packaging>jboss-esb</packaging>
| <url>http://maven.apache.org</url>
|
| <dependencies>
| <dependency>
| <groupId>junit</groupId>
| <artifactId>junit</artifactId>
| <version>3.8.1</version>
| <scope>test</scope>
| </dependency>
| </dependencies>
|
| <build>
| <plugins>
| <plugin>
|
| <groupId>org.codehaus.mojo</groupId>
| <artifactId>jboss-packaging-maven-plugin</artifactId>
| <version>2.0-SNAPSHOT</version>
|
| <extensions>true</extensions>
| </plugin>
| </plugins>
| </build>
|
| <pluginRepositories>
| <pluginRepository>
| <id>Codehaus Snapshots</id>
| <
url>http://snapshots.repository.codehaus.org/</url>
| <snapshots>
| <enabled>true</enabled>
| </snapshots>
| <releases>
| <enabled>false</enabled>
| </releases>
| </pluginRepository>
|
| </pluginRepositories>
| </project>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4124825#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...