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 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  22. <parent>
  23. <groupId>org.apache.maven.archiva</groupId>
  24. <artifactId>archiva</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>archiva-reports-standard</artifactId>
  29. <name>Archiva Standard Reports</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.codehaus.plexus</groupId>
  33. <artifactId>plexus-utils</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.codehaus.plexus</groupId>
  37. <artifactId>plexus-container-default</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.maven</groupId>
  41. <artifactId>maven-artifact</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.maven</groupId>
  45. <artifactId>maven-artifact-manager</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.maven</groupId>
  49. <artifactId>maven-model</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.maven</groupId>
  53. <artifactId>maven-repository-metadata</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.maven.wagon</groupId>
  57. <artifactId>wagon-provider-api</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.maven.archiva</groupId>
  61. <artifactId>archiva-repository-layer</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.maven.archiva</groupId>
  65. <artifactId>archiva-indexer</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.maven.archiva</groupId>
  69. <artifactId>archiva-discoverer</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-lang</groupId>
  73. <artifactId>commons-lang</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-io</groupId>
  77. <artifactId>commons-io</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.codehaus.plexus</groupId>
  81. <artifactId>plexus-jdo2</artifactId>
  82. <version>1.0-alpha-8</version>
  83. <exclusions>
  84. <exclusion>
  85. <groupId>xerces</groupId>
  86. <artifactId>xercesImpl</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>xerces</groupId>
  90. <artifactId>xmlParserAPIs</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>jpox</groupId>
  96. <artifactId>jpox</artifactId>
  97. <version>1.1.6</version>
  98. <scope>compile</scope>
  99. <exclusions>
  100. <!-- targeting JDK 1.4 we don't need this -->
  101. <exclusion>
  102. <groupId>javax.sql</groupId>
  103. <artifactId>jdbc-stdext</artifactId>
  104. </exclusion>
  105. </exclusions>
  106. </dependency>
  107. <!-- TEST DEPS -->
  108. <dependency>
  109. <groupId>hsqldb</groupId>
  110. <artifactId>hsqldb</artifactId>
  111. <version>1.7.3.3</version>
  112. <scope>test</scope>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.codehaus.modello</groupId>
  119. <artifactId>modello-maven-plugin</artifactId>
  120. <version>1.0-alpha-15-SNAPSHOT</version>
  121. <configuration>
  122. <version>1.0.0</version>
  123. <packageWithVersion>false</packageWithVersion>
  124. <model>src/main/mdo/reporting.mdo</model>
  125. </configuration>
  126. <executions>
  127. <execution>
  128. <id>modello-java</id>
  129. <goals>
  130. <goal>java</goal>
  131. <goal>jpox-metadata-class</goal>
  132. <!--
  133. <goal>xpp3-writer</goal>
  134. <goal>xpp3-reader</goal>
  135. -->
  136. </goals>
  137. </execution>
  138. <execution>
  139. <id>jpox-jdo-mapping</id>
  140. <goals>
  141. <goal>jpox-jdo-mapping</goal>
  142. </goals>
  143. <configuration>
  144. <outputDirectory>${basedir}/target/classes/org/apache/maven/archiva/reporting/model/</outputDirectory>
  145. </configuration>
  146. </execution>
  147. </executions>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.codehaus.mojo</groupId>
  151. <artifactId>jpox-maven-plugin</artifactId>
  152. <version>1.1.6</version>
  153. <executions>
  154. <execution>
  155. <goals>
  156. <goal>enhance</goal>
  157. </goals>
  158. </execution>
  159. </executions>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.codehaus.mojo</groupId>
  163. <artifactId>cobertura-maven-plugin</artifactId>
  164. <configuration>
  165. <instrumentation>
  166. <!-- exclude generated -->
  167. <excludes>
  168. <exclude>org/apache/maven/archiva/reporting/model/**</exclude>
  169. </excludes>
  170. </instrumentation>
  171. </configuration>
  172. </plugin>
  173. </plugins>
  174. </build>
  175. </project>