fixed issue with data directory and made a few other minor changes

Former-commit-id: 46f89f4deb6b0b55f34ee61c61424f87bf0334d8
This commit is contained in:
Jeremy Long
2013-08-01 10:57:44 -04:00
parent a6b76b3494
commit a42c586bb2
12 changed files with 269 additions and 20 deletions

18
pom.xml
View File

@@ -79,8 +79,8 @@ along with Dependency-Check. If not, see <http://www.gnu.org/licenses />.
<connection>scm:git:git@github.com:jeremylong/DependencyCheck.git</connection>
<url>https://github.com/jeremylong/DependencyCheck.git</url>
<developerConnection>scm:git:git@github.com:jeremylong/DependencyCheck.git</developerConnection>
<tag>HEAD</tag>
</scm>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/jeremylong/DependencyCheck/issues</url>
@@ -209,6 +209,20 @@ along with Dependency-Check. If not, see <http://www.gnu.org/licenses />.
</executions>
</plugin>
<!-- end copy -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>