version 1.3.0

This commit is contained in:
Jeremy Long
2015-08-04 21:19:19 -04:00
parent 5d6ad8bc6c
commit d529e88242
9 changed files with 60 additions and 36 deletions

View File

@@ -20,7 +20,7 @@ Copyright (c) 2013 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-ant</artifactId>

View File

@@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-cli</artifactId>

View File

@@ -20,7 +20,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-core</artifactId>

View File

@@ -22,10 +22,11 @@ Copyright (c) 2015 Wei Ma. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-gradle</artifactId>
<version>0.0.5</version>
<!-- we must use gradle to build this, as such the packaging is pom -->
<packaging>pom</packaging>
@@ -33,4 +34,55 @@ Copyright (c) 2015 Wei Ma. All Rights Reserved.
<description>dependency-check-gradle is a Gradle Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.</description>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!-- begin copy from http://minds.coremedia.com/2012/09/11/problem-solved-deploy-multi-module-maven-project-site-as-github-pages/ -->
<distributionManagement>
<site>
<id>github-pages-site</id>
<name>Deployment through GitHub's site deployment plugin</name>
<url>${basedir}/../target/site/${project.version}/dependency-check-gradle</url>
</site>
</distributionManagement>
<!-- end copy -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<configuration>
<skipDeploy>true</skipDeploy>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${reporting.project-info-reports-plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>summary</report>
<report>license</report>
<report>help</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>

View File

@@ -3,7 +3,7 @@
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-jenkins</artifactId>
<name>Dependency-Check Jenkins Plugin</name>

View File

@@ -22,7 +22,7 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-maven</artifactId>

View File

@@ -21,7 +21,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>dependency-check-utils</artifactId>

View File

@@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>1.2.12-SNAPSHOT</version>
<version>1.3.0</version>
<packaging>pom</packaging>
<modules>

View File

@@ -1,28 +0,0 @@
Gradle Integration
==================
While a full Gradle Plugin is planned, the following gradle task can be used to
run dependency-check:
```
configurations {
depCheck
}
dependencies {
depCheck "org.owasp:dependency-check-ant:${project.version}"
}
task checkDeps << {
ant.taskdef(name: 'checkDepsTask',
classname: 'org.owasp.dependencycheck.taskdefs.DependencyCheckTask',
classpath: configurations.depCheck.asPath)
ant.checkDepsTask() {
path {
pathelement(path: sourceSets.main.runtimeClasspath.asPath)
}
}
}
```
The above task definition was provided by [Nikita Koksharov](https://github.com/mrniko).