You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <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">
  21. <parent>
  22. <artifactId>archiva</artifactId>
  23. <groupId>org.apache.archiva</groupId>
  24. <version>2.2.10-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-modules</artifactId>
  28. <packaging>pom</packaging>
  29. <name>Archiva :: Modules</name>
  30. <url>http://archiva.apache.org/ref/${project.version}</url>
  31. <properties>
  32. <siteFilePath>${user.home}/archiva-sites/archiva-ref-${project.version}/</siteFilePath>
  33. <siteUrlDeployment>file://${siteFilePath}</siteUrlDeployment>
  34. <scmPubCheckoutDirectory>${basedir}/.site-content</scmPubCheckoutDirectory>
  35. </properties>
  36. <modules>
  37. <module>archiva-base</module>
  38. <module>archiva-scheduler</module>
  39. <module>archiva-web</module>
  40. <module>archiva-karaf</module>
  41. <module>metadata</module>
  42. <module>plugins</module>
  43. </modules>
  44. <build>
  45. <pluginManagement>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-scm-publish-plugin</artifactId>
  50. <configuration>
  51. <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/ref/${project.version}</pubScmUrl>
  52. <checkinComment>Apache Archiva Versionned ref for ${project.version}</checkinComment>
  53. <content>${project.build.directory}/staging</content>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </pluginManagement>
  58. </build>
  59. <reporting>
  60. <plugins>
  61. <!-- jxr first -->
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-jxr-plugin</artifactId>
  65. <version>${jxrVersion}</version>
  66. <configuration>
  67. <aggregate>true</aggregate>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-checkstyle-plugin</artifactId>
  73. <version>${checkstyleVersion}</version>
  74. <!-- inherited is needed to use netbeans checkstyle based code formatting -->
  75. <!-- 2013 05 03 may change in future release -->
  76. <inherited>true</inherited>
  77. <configuration>
  78. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  79. <configLocation>config/maven_checks.xml</configLocation>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <!-- No need for the standard project reports -->
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-project-info-reports-plugin</artifactId>
  86. <version>${maven-project-info-reports-plugin.version}</version>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-site-plugin</artifactId>
  91. <version>3.9.1</version>
  92. <configuration>
  93. <reportPlugins>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-javadoc-plugin</artifactId>
  97. <version>${javadocPluginVersion}</version>
  98. <configuration>
  99. <doclint>none</doclint>
  100. <additionalparam>-Xdoclint:none</additionalparam>
  101. </configuration>
  102. </plugin>
  103. </reportPlugins>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-javadoc-plugin</artifactId>
  109. <version>${javadocPluginVersion}</version>
  110. <inherited>false</inherited>
  111. <configuration>
  112. <notimestamp>true</notimestamp>
  113. <source>1.8</source>
  114. <links>
  115. <link>https://docs.oracle.com/javase/8/docs/api/</link>
  116. <link>http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/</link>
  117. <link>http://commons.apache.org/dbcp/apidocs/</link>
  118. <link>http://commons.apache.org/fileupload/apidocs/</link>
  119. <link>http://commons.apache.org/httpclient/apidocs/</link>
  120. <link>http://commons.apache.org/logging/apidocs/</link>
  121. <link>http://commons.apache.org/pool/apidocs/</link>
  122. <link>http://junit.sourceforge.net/javadoc/</link>
  123. <link>http://logging.apache.org/log4j/1.2/apidocs/</link>
  124. <link>http://jakarta.apache.org/regexp/apidocs/</link>
  125. <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link>
  126. </links>
  127. <linksource>true</linksource>
  128. <show>private</show>
  129. <doclint>none</doclint>
  130. <additionalparam>
  131. -Xdoclint:none
  132. </additionalparam>
  133. <!--docletArtifact>
  134. <groupId>com.google.doclava</groupId>
  135. <artifactId>doclava</artifactId>
  136. <version>1.0.5</version>
  137. </docletArtifact>
  138. <doclet>com.google.doclava.Doclava</doclet>
  139. <bootclasspath>${sun.boot.class.path}</bootclasspath>
  140. <additionalparam>
  141. -Xdoclint:none
  142. -hdf project.name "${project.name}"
  143. -d ${project.build.directory}/site/apidocs
  144. </additionalparam>
  145. <useStandardDocletOptions>false</useStandardDocletOptions>
  146. <doclint>none</doclint>
  147. <additionalJOption>-J-Xmx1024m</additionalJOption>
  148. <additionnalDependencies>
  149. <additionnalDependency>
  150. <groupId>commons-dbcp</groupId>
  151. <artifactId>commons-dbcp</artifactId>
  152. <version>1.4</version>
  153. </additionnalDependency>
  154. <additionnalDependency>
  155. <groupId>commons-pool</groupId>
  156. <artifactId>commons-pool</artifactId>
  157. <version>1.6</version>
  158. </additionnalDependency>
  159. </additionnalDependencies-->
  160. <tags>
  161. <tag>
  162. <name>todo</name>
  163. <placement>a</placement>
  164. <head>To Do:</head>
  165. </tag>
  166. </tags>
  167. </configuration>
  168. <reportSets>
  169. <reportSet>
  170. <reports>
  171. <!-- Don't need tests -->
  172. <report>aggregate</report>
  173. </reports>
  174. </reportSet>
  175. </reportSets>
  176. </plugin>
  177. </plugins>
  178. </reporting>
  179. <profiles>
  180. <profile>
  181. <id>reporting</id>
  182. <reporting>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-checkstyle-plugin</artifactId>
  187. <version>${checkstyleVersion}</version>
  188. <inherited>false</inherited>
  189. <reportSets>
  190. <reportSet>
  191. <reports>
  192. <report>checkstyle-aggregate</report>
  193. </reports>
  194. </reportSet>
  195. </reportSets>
  196. </plugin>
  197. </plugins>
  198. </reporting>
  199. </profile>
  200. </profiles>
  201. <distributionManagement>
  202. <site>
  203. <id>apache.website</id>
  204. <url>${siteUrlDeployment}</url>
  205. </site>
  206. </distributionManagement>
  207. </project>