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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0"?>
  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>
  21. <parent>
  22. <groupId>org.apache.maven.archiva</groupId>
  23. <artifactId>archiva-parent</artifactId>
  24. <version>1.0-alpha-1-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-cli</artifactId>
  28. <name>Archiva Command Line Client</name>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.maven.archiva</groupId>
  32. <artifactId>archiva-repository-layer</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.maven.archiva</groupId>
  36. <artifactId>archiva-core-consumers</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.maven.archiva</groupId>
  40. <artifactId>archiva-converter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.codehaus.plexus</groupId>
  44. <artifactId>plexus-digest</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.codehaus.plexus</groupId>
  48. <artifactId>plexus-component-api</artifactId>
  49. <version>1.0-alpha-22</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.codehaus.plexus</groupId>
  53. <artifactId>plexus-container-default</artifactId>
  54. <version>1.0-alpha-22</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.codehaus.plexus</groupId>
  58. <artifactId>plexus-cli</artifactId>
  59. <version>1.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-lang</groupId>
  63. <artifactId>commons-lang</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.codehaus.plexus.registry</groupId>
  67. <artifactId>plexus-registry-commons</artifactId>
  68. <version>1.0-alpha-2</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <artifactId>maven-assembly-plugin</artifactId>
  75. <configuration>
  76. <descriptor>src/main/assembly/archiva-cli-assembly.xml</descriptor>
  77. <archive>
  78. <manifest>
  79. <mainClass>org.apache.maven.archiva.cli.ArchivaCli</mainClass>
  80. </manifest>
  81. </archive>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.codehaus.plexus</groupId>
  86. <artifactId>plexus-maven-plugin</artifactId>
  87. <version>1.3.5</version>
  88. <executions>
  89. <execution>
  90. <id>merge</id>
  91. <goals>
  92. <goal>merge-descriptors</goal>
  93. </goals>
  94. <configuration>
  95. <descriptors>
  96. <descriptor>${basedir}/src/main/resources/META-INF/plexus/components.xml</descriptor>
  97. <descriptor>${project.build.directory}/generated-resources/plexus/META-INF/plexus/components.xml</descriptor>
  98. </descriptors>
  99. </configuration>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>