updated site information

Former-commit-id: e0750d178f7c9437aa6892b8e290525421b5d3ed
This commit is contained in:
Jeremy Long
2013-09-02 14:34:46 -04:00
parent fac7b09089
commit 1d05ef7a3c
3 changed files with 85 additions and 6 deletions

View File

@@ -31,6 +31,15 @@
</roles> </roles>
</developer> </developer>
</developers> </developers>
<!-- 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-maven</url>
</site>
</distributionManagement>
<!-- end copy -->
<scm> <scm>
<connection>scm:git:git@github.com:jenkinsci/dependency-check-jenkins.git</connection> <connection>scm:git:git@github.com:jenkinsci/dependency-check-jenkins.git</connection>
<url>https://github.com/jenkinsci/dependency-check-jenkins</url> <url>https://github.com/jenkinsci/dependency-check-jenkins</url>
@@ -46,4 +55,40 @@
<url>http://www.gnu.org/licenses/</url> <url>http://www.gnu.org/licenses/</url>
</license> </license>
</licenses> </licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<configuration>
<skipDeploy>true</skipDeploy>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>summary</report>
<report>license</report>
<report>help</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>

View File

@@ -0,0 +1,33 @@
Dependency-Check Jenkins Plugin
==============================
The Dependency-Check Jenkins Plugin features the ability to perform a dependency
analysis build and later view results post build. The plugin is built using [analysis-core]
and features many of the same features that Jenkins static analysis plugins offer,
including thresholds, charts and the ability to view vulnerability information should
a dependency have one identified.
The main repository is located at [jenkins-cli/dependency-check-jenkins](https://github.com/jenkinsci/dependency-check-jenkins).
The main site for documentation is located at [OWASP Dependency-Check-Jenkins](https://wiki.jenkins-ci.org/display/JENKINS/OWASP+Dependency-Check+Plugin).
More information can be found on the [wiki].
Mailing List
------------
Subscribe: [dependency-check+subscribe@googlegroups.com](mailto:dependency-check+subscribe@googlegroups.com)
Post: [dependency-check@googlegroups.com](mailto:dependency-check@googlegroups.com)
Copyright & License
-------------------
Dependency-Check Jenkins Plugin is Copyright (c) 2013 Steve Springett. All Rights Reserved.
Permission to modify and redistribute is granted under the terms of the GPLv3 license. See the [LICENSE.txt] [GPLv3] file for the full license.
[wiki]: https://github.com/jenkinsci/dependency-check-jenkins/wiki
[analysis-core]: http://wiki.jenkins-ci.org/x/CwDgAQ
[GPLv3]: https://github.com/jenkinsci/dependency-check-jenkins/blob/master/LICENSE.txt
[notices]: https://github.com/jenkinsci/dependency-check-jenkins/blob/master/NOTICES.txt

View File

@@ -1,23 +1,23 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!-- <!--
This file is part of dependency-check-core. This file is part of dependency-check-jenkins.
Dependency-check-core is free software: you can redistribute it and/or modify it Dependency-check-jenkins is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any Software Foundation, either version 3 of the License, or (at your option) any
later version. later version.
Dependency-check-core is distributed in the hope that it will be useful, but Dependency-check-jenkins is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. details.
You should have received a copy of the GNU General Public License along with You should have received a copy of the GNU General Public License along with
dependency-check-core. If not, see http://www.gnu.org/licenses/. dependency-check-jenkins. If not, see http://www.gnu.org/licenses/.
Copyright (c) 2012 Jeremy Long. All Rights Reserved. Copyright (c) 2013 Jeremy Long. All Rights Reserved.
--> -->
<project name="dependency-check-core"> <project name="dependency-check-jenkins">
<bannerLeft> <bannerLeft>
<name>dependency-check-jenkins</name> <name>dependency-check-jenkins</name>
</bannerLeft> </bannerLeft>
@@ -26,5 +26,6 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
<item name="dependency-check" href="../index.html"/> <item name="dependency-check" href="../index.html"/>
</breadcrumbs> </breadcrumbs>
<menu ref="Project Documentation" /> <menu ref="Project Documentation" />
<menu ref="reports" />
</body> </body>
</project> </project>