Statcvs plugin fixes. IT NOW WORKS!

This commit is contained in:
Ben Alex 2004-12-22 03:43:10 +00:00
parent 0cdfd00151
commit a9978c18ea
2 changed files with 20 additions and 9 deletions

View File

@ -4,5 +4,15 @@ maven.sdocbook.src.dir=${basedir}/docbook
maven.sdocbook.resources.include=**/*.gif,**/*.svg,**/*.jpg,**/*.css
maven.sdocbook.stylesheets.dir=${maven.build.dir}/docbook-xsl-1.66.1
# statcvs, log all modules
statcvs.log.options=${rootdir}
# statcvs, if you want a full, accurate history
# (this downloads the *entire* CVS into target/statcvs, so it can take some time)
#statcvs.history=true
# ask statcvs to log parent directories (ie project root, as we're running from /doc)
statcvs.log.options=..
####################### IMPORTANT STATCVS NOTE #######################
Statcvs will always use the "developer" repository if it is defined. To enable
end users to easily run the "site" goal, we do not define it in doc/project.xml

View File

@ -1,28 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>${basedir}/../project.xml</extend>
<pomVersion>3</pomVersion>
<artifactId>acegi-security-doc</artifactId>
<name>Acegi Security System for Spring</name>
<groupId>acegi-security-doc</groupId>
<repository>
<connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/acegisecurity:acegisecurity</connection>
<url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/acegisecurity/acegisecurity/doc/</url>
</repository>
<dependencies>
<!-- docbook -->
<dependency>
<groupId>maven-plugins</groupId>
<artifactId>maven-sdocbook-plugin</artifactId>
<version>1.4-SNAPSHOT</version>
<type>plugin</type>
</dependency>
<!-- docbook -->
<dependency>
<groupId>docbook</groupId>
<artifactId>docbook-xsl</artifactId>
<version>1.66.1</version>
<url>http://docbook.sourceforge.net</url>
<type>zip</type>
<url>http://docbook.sourceforge.net</url>
</dependency>
</dependencies>
<reports>
<report>maven-statcvs-plugin</report>
<report>maven-license-plugin</report>
@ -30,6 +32,5 @@
<report>maven-dashboard-plugin</report>
<report>maven-multiproject-plugin</report>
</reports>
</project>