12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.acegisecurity</groupId>
- <artifactId>acegi-security-parent</artifactId>
- <version>1.0.4-SNAPSHOT</version>
- </parent>
- <artifactId>acegi-security-doc</artifactId>
- <name>Acegi Security System for Spring - Documentation</name>
- <packaging>pom</packaging>
- <!-- repeated here to avoid appending the artifactId -->
- <scm>
- <connection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</connection>
- <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</developerConnection>
- <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/</url>
- </scm>
- <dependencies>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>docbook-maven-plugin</artifactId>
- <version>1.0.0-alpha-2-SNAPSHOT</version>
- <configuration>
- <sourceDirectory>${basedir}/docbook</sourceDirectory>
- <!-- <resourceDirectory>${basedir}/docbook</resourceDirectory> -->
- </configuration>
- <executions>
- <execution>
- <phase>site</phase>
- <goals>
- <goal>transform</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <pluginRepositories>
- <pluginRepository>
- <id>codehaus.org</id>
- <name>Maven Central Development Plugin Repository</name>
- <url>http://snapshots.repository.codehaus.org</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- </pluginRepository>
- </pluginRepositories>
- </project>
|