/AuthenticRoast/pom.xml

http://authenticroast.googlecode.com/ · XML · 95 lines · 95 code · 0 blank · 0 comment · 0 complexity · 5c534c08ca17b26e92ecb0f8faac0b81 MD5 · raw file

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>name.aikesommer</groupId>
  5. <artifactId>AuthenticRoast</artifactId>
  6. <version>0.3.4-SNAPSHOT</version>
  7. <name>AuthenticRoast</name>
  8. <packaging>pom</packaging>
  9. <url>http://code.google.com/p/authenticroast/</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <build>
  14. <extensions>
  15. <extension>
  16. <groupId>org.jvnet.wagon-svn</groupId>
  17. <artifactId>wagon-svn</artifactId>
  18. <version>1.8</version>
  19. </extension>
  20. </extensions>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <configuration>
  26. <source>1.5</source>
  27. <target>1.5</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>com.google.code.maven-license-plugin</groupId>
  32. <artifactId>maven-license-plugin</artifactId>
  33. <version>1.4.0</version>
  34. <configuration>
  35. <header>license-header.txt</header>
  36. <excludes>
  37. <exclude>*gpl-*.txt</exclude>
  38. <exclude>*.xml</exclude>
  39. <exclude>**/thirdparty/**</exclude>
  40. </excludes>
  41. <useDefaultExcludes>true</useDefaultExcludes>
  42. </configuration>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>check</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-assembly-plugin</artifactId>
  53. <configuration>
  54. <descriptors>
  55. <descriptor>assembly.xml</descriptor>
  56. </descriptors>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <modules>
  62. <module>AuthenticRoast-API</module>
  63. <module>AuthenticRoast-Impl</module>
  64. <module>AuthenticRoast-Extras</module>
  65. <module>AuthenticRoast-Samples</module>
  66. </modules>
  67. <repositories>
  68. <repository>
  69. <id>maven2-repository.dev.java.net</id>
  70. <name>Java.net Repository for Maven</name>
  71. <url>http://download.java.net/maven/2/</url>
  72. </repository>
  73. <repository>
  74. <id>glassfish-repository</id>
  75. <name>Java.net Repository for Glassfish</name>
  76. <url>http://download.java.net/maven/glassfish</url>
  77. </repository>
  78. </repositories>
  79. <distributionManagement>
  80. <repository>
  81. <id>authenticroast-releases</id>
  82. <name>AuthenticRoast Repository - Releases</name>
  83. <url>file:../../maven2/releases/</url>
  84. </repository>
  85. <snapshotRepository>
  86. <id>authenticroast-snapshots</id>
  87. <name>AuthenticRoast Repository - Snapshots</name>
  88. <url>file:../../maven2/snapshots/</url>
  89. </snapshotRepository>
  90. </distributionManagement>
  91. <scm>
  92. <connection>scm:svn:http://authenticroast.googlecode.com/svn/</connection>
  93. <developerConnection>scm:svn:https://authenticroast.googlecode.com/svn/</developerConnection>
  94. </scm>
  95. </project>