Former-commit-id: 13fe0b65c1061084d1716db13c18d19ed1797fce
This commit is contained in:
Jeremy Long
2013-05-27 22:12:25 -04:00
parent 29bfd7325d
commit f5a78402a6

23
pom.xml
View File

@@ -22,7 +22,7 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
<groupId>org.owasp</groupId> <groupId>org.owasp</groupId>
<artifactId>dependency-check</artifactId> <artifactId>dependency-check</artifactId>
<version>0.3.1.1-SNAPSHOT</version> <version>0.3.2.1-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>DependencyCheck</name> <name>DependencyCheck</name>
@@ -157,7 +157,6 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
</excludes> </excludes>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId> <artifactId>cobertura-maven-plugin</artifactId>
@@ -407,7 +406,6 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.google.code.findbugs</groupId> <groupId>com.google.code.findbugs</groupId>
@@ -419,17 +417,19 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
<groupId>commons-cli</groupId> <groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId> <artifactId>commons-cli</artifactId>
<version>1.2</version> <version>1.2</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>2.4</version> <version>2.4</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<!-- Using the same as Lucene-->
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
<version>2.4</version> <version>2.5</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
@@ -441,28 +441,32 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
<dependency> <dependency>
<groupId>org.apache.lucene</groupId> <groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId> <artifactId>lucene-core</artifactId>
<version>4.0.0</version> <version>4.3.0</version>
<!--<version>3.5.0</version>--> <scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.lucene</groupId> <groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId> <artifactId>lucene-analyzers-common</artifactId>
<version>4.0.0</version> <version>4.3.0</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.lucene</groupId> <groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId> <artifactId>lucene-queryparser</artifactId>
<version>4.0.0</version> <version>4.3.0</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.velocity</groupId> <groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId> <artifactId>velocity</artifactId>
<version>1.7</version> <version>1.7</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.velocity</groupId> <groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId> <artifactId>velocity-tools</artifactId>
<version>2.0</version> <version>2.0</version>
<scope>runtime</scope>
<!-- very limited use of the velocity-tools, not all of the dependencies are needed--> <!-- very limited use of the velocity-tools, not all of the dependencies are needed-->
<exclusions> <exclusions>
<exclusion> <exclusion>
@@ -507,6 +511,7 @@ along with DependencyCheck. If not, see <http://www.gnu.org/licenses />.
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>1.3.172</version> <version>1.3.172</version>
<scope>runtime</scope>
</dependency> </dependency>
<!-- The following dependencies are only scanned during integration testing --> <!-- The following dependencies are only scanned during integration testing -->