Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pom.xml 3.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <groupId>org.apache.archiva</groupId>
  23. <artifactId>archiva-base</artifactId>
  24. <version>2.2.0-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-model</artifactId>
  28. <packaging>bundle</packaging>
  29. <name>Archiva Base :: Model</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>commons-lang</groupId>
  33. <artifactId>commons-lang</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-collections</groupId>
  37. <artifactId>commons-collections</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.archiva</groupId>
  41. <artifactId>archiva-common</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.archiva</groupId>
  45. <artifactId>archiva-test-utils</artifactId>
  46. <version>${project.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-jcl</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.codehaus.modello</groupId>
  59. <artifactId>modello-maven-plugin</artifactId>
  60. <configuration>
  61. <version>1.3.0</version>
  62. <packageWithVersion>false</packageWithVersion>
  63. <models>
  64. <model>src/main/mdo/archiva-base.xml</model>
  65. </models>
  66. </configuration>
  67. <executions>
  68. <execution>
  69. <id>archiva-base</id>
  70. <goals>
  71. <goal>java</goal>
  72. <goal>xsd</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.apache.felix</groupId>
  79. <artifactId>maven-bundle-plugin</artifactId>
  80. <configuration>
  81. <instructions>
  82. <Bundle-SymbolicName>org.apache.archiva.model</Bundle-SymbolicName>
  83. <Bundle-Version>${project.version}</Bundle-Version>
  84. <Export-Package>
  85. org.apache.archiva.model;version=${project.version}
  86. </Export-Package>
  87. <Import-Package>
  88. org.apache.archiva.common.utils;version=${project.version},
  89. org.apache.commons.lang;version="[2.4,3)"
  90. </Import-Package>
  91. </instructions>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>