pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.acegisecurity</groupId>
  8. <artifactId>acegi-security-parent</artifactId>
  9. <version>1.0.4-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security-doc</artifactId>
  12. <name>Acegi Security System for Spring - Documentation</name>
  13. <packaging>pom</packaging>
  14. <!-- repeated here to avoid appending the artifactId -->
  15. <scm>
  16. <connection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</connection>
  17. <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</developerConnection>
  18. <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/</url>
  19. </scm>
  20. <dependencies>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.codehaus.mojo</groupId>
  26. <artifactId>docbook-maven-plugin</artifactId>
  27. <version>1.0.0-alpha-2-SNAPSHOT</version>
  28. <configuration>
  29. <sourceDirectory>${basedir}/docbook</sourceDirectory>
  30. <!-- <resourceDirectory>${basedir}/docbook</resourceDirectory> -->
  31. </configuration>
  32. <executions>
  33. <execution>
  34. <phase>site</phase>
  35. <goals>
  36. <goal>transform</goal>
  37. </goals>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <pluginRepositories>
  44. <pluginRepository>
  45. <id>codehaus.org</id>
  46. <name>Maven Central Development Plugin Repository</name>
  47. <url>http://snapshots.repository.codehaus.org</url>
  48. <releases>
  49. <enabled>false</enabled>
  50. </releases>
  51. </pluginRepository>
  52. </pluginRepositories>
  53. </project>