Fixed most of the maven build except the path to using tomcatconf. Moving the tree from src/main has caused changing all the default path locations that maven uses to be specified.

git-svn-id: http://webgoat.googlecode.com/svn/branches/webgoat-6.0@486 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
mayhew64@gmail.com 2012-11-20 15:24:04 +00:00
parent 6a96547ef0
commit 3a7d946c8f

12
pom.xml
View File

@ -22,12 +22,13 @@
</properties> </properties>
<build> <build>
<sourceDirectory>${basedir}/java</sourceDirectory>
<resources> <resources>
<resource> <resource>
<directory>java</directory> <directory>${basedir}/java</directory>
</resource> </resource>
<resource> <resource>
<directory>${basedir}resources</directory> <directory>${basedir}/resources</directory>
</resource> </resource>
</resources> </resources>
<plugins> <plugins>
@ -46,6 +47,13 @@
<wtpversion>1.5</wtpversion> <wtpversion>1.5</wtpversion>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<warSourceDirectory>${basedir}/webapp</warSourceDirectory>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>