I've got a Maven-based project, which contains two modules, each with
its own pom, and a pom for the whole project.  When I run 
mvn clean package

the build succeeds, but nothing is showing up in my target directories.
I'm  not sure where to look for what is missing.  How do I track this
down?  Here is the pom for the webapp portion:

<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";>
  <parent>
    <artifactId>MvnSpringWebApp</artifactId>
    <groupId>edu.apu.mvnspringwebapp</groupId>
    <version>1.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>edu.apu.mvnspringwebapp</groupId>
  <artifactId>web</artifactId>
  <packaging>war</packaging>
  <version>1.0</version>
  <name>mvnspringwebapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
      <dependency>
        <groupId>edu.apu.mvnspringwebapp</groupId>
        <artifactId>core</artifactId>
        <version>1.0</version>
      </dependency>
    
  </dependencies>
  <build>
    <finalName>mvnspringwebapp</finalName>
  </build>
</project>

I have created a test directory hierarchy under "web/src," for example,
and I don't see any evidence that Maven even saw that.  Thanks.

Ken

Kenneth D. Litwak, Ph.D.
Azusa Pacific University
901 E. Alosta Ave.
Azusa, CA 91702


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

Reply via email to