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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <artifactId>plugins</artifactId>
  24. <groupId>org.apache.archiva</groupId>
  25. <version>2.2.10-SNAPSHOT</version>
  26. </parent>
  27. <artifactId>problem-reports</artifactId>
  28. <packaging>bundle</packaging>
  29. <name>Archiva Core Plugins :: Problem Reporting Plugin</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.archiva</groupId>
  33. <artifactId>metadata-repository-api</artifactId>
  34. </dependency>
  35. <!-- FIXME this deps must be removed -->
  36. <dependency>
  37. <groupId>org.apache.archiva</groupId>
  38. <artifactId>archiva-configuration</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.archiva</groupId>
  42. <artifactId>archiva-repository-admin-api</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-checksum</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.archiva</groupId>
  50. <artifactId>archiva-model</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.archiva</groupId>
  54. <artifactId>archiva-consumer-api</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.archiva</groupId>
  58. <artifactId>archiva-test-utils</artifactId>
  59. <version>${project.version}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.mockito</groupId>
  64. <artifactId>mockito-all</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.archiva</groupId>
  69. <artifactId>test-repository</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>xerces</groupId>
  74. <artifactId>xercesImpl</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.felix</groupId>
  82. <artifactId>maven-bundle-plugin</artifactId>
  83. <configuration>
  84. <instructions>
  85. <Bundle-SymbolicName>org.apache.archiva.reports</Bundle-SymbolicName>
  86. <Bundle-Version>${project.version}</Bundle-Version>
  87. <Export-Package>
  88. org.apache.archiva.reports*;version=${project.version}
  89. </Export-Package>
  90. <Import-Package>
  91. javax.annotation,
  92. javax.inject,
  93. org.apache.archiva.admin.model.beans;version=${project.version},
  94. org.apache.archiva.checksum;version=${project.version},
  95. org.apache.archiva.configuration;version=${project.version},
  96. org.apache.archiva.metadata.model;version=${project.version},
  97. org.apache.archiva.metadata.repository;version=${project.version},
  98. org.apache.archiva.metadata.repository.storage;version=${project.version},
  99. org.apache.archiva.repository.events;version=${project.version},
  100. org.apache.archiva.consumers;version=${project.version},
  101. org.apache.commons.collections;version="[3.2,4)",
  102. org.springframework.*;version="[3,4)",
  103. org.apache.archiva.redback.components.registry,
  104. org.slf4j;resolution:=optional
  105. </Import-Package>
  106. </instructions>
  107. </configuration>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-dependency-plugin</artifactId>
  112. <executions>
  113. <execution>
  114. <id>test-repository</id>
  115. <phase>generate-test-resources</phase>
  116. <goals>
  117. <goal>unpack-dependencies</goal>
  118. </goals>
  119. <configuration>
  120. <includeArtifactIds>test-repository</includeArtifactIds>
  121. <outputDirectory>target/test-repository</outputDirectory>
  122. </configuration>
  123. </execution>
  124. </executions>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>