Hi, I'm facing a problem when including a subproject as a dependency in the
POM of my project. Code is like the following:

<project xmlns="http://maven.apache.org/POM/4.0.0";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";...>

  <modelVersion>4.0.0</modelVersion>
  <groupId>com.test</groupId>
  <artifactId>test1</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>

  <name>test1</name>
  <url>http://maven.apache.org</url>

  <dependencies>

    <dependency>
      <groupId>com.test</groupId>
      <artifactId>test2</artifactId>
      <version>1.0-SNAPSHOT</version>
    </dependency>

  </dependencies>
                
</project>

The problem is that test2 has hibernate mapping files, and currently when I
start the application in dev mode they are not being loaded.
Is there a trick for making project inclusion work?

Thanks!

--
View this message in context: 
http://maven.40175.n5.nabble.com/Including-Subprojects-as-jar-files-tp5662412p5662412.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to