location of data files is no longer the working directory, rather the location of the JAR file itself

Former-commit-id: 320077664c9c65f5b5f6dd7acb5c923da8869167
This commit is contained in:
Jeremy Long
2012-11-12 12:19:39 -05:00
parent b1d200fe3d
commit 99c056e7f5
7 changed files with 149 additions and 51 deletions

14
pom.xml
View File

@@ -206,13 +206,21 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses/>.
<value>${project.build.directory}/cobertura/cobertura.ser</value>
<workingDirectory>target</workingDirectory>
</property>
<property>
<!--<property>
<name>cve</name>
<value>${project.build.directory}/data/cve</value>
</property>
<property>
<name>cpe</name>
<value>${project.build.directory}/data/cpe</value>
</property>-->
<property>
<name>cve</name>
<value>../data/cve</value>
</property>
<property>
<name>cpe</name>
<value>../data/cpe</value>
</property>
</systemProperties>
<excludes>
@@ -337,9 +345,9 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses/>.
<reportSets>
<reportSet>
<id>integration-tests</id>
<reports>
<!--<reports>
<report>failsafe-report-only</report>
</reports>
</reports>-->
</reportSet>
</reportSets>
</plugin>