123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <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.5-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>
- </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>
|