Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 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</artifactId>
  24. <version>1.2-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.archiva</groupId>
  32. <artifactId>archiva-repository-layer</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.archiva</groupId>
  36. <artifactId>archiva-dependency-tree-consumer</artifactId>
  37. <version>1.2-SNAPSHOT</version>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.archiva</groupId>
  42. <artifactId>archiva-xml-tools</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-converter</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.maven.wagon</groupId>
  50. <artifactId>wagon-file</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.code.cli-parser</groupId>
  54. <artifactId>cli</artifactId>
  55. <version>7</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-log4j12</artifactId>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.codehaus.plexus</groupId>
  64. <artifactId>plexus-spring</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>jcl104-over-slf4j</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-shade-plugin</artifactId>
  76. <version>1.0.1</version>
  77. <executions>
  78. <execution>
  79. <phase>package</phase>
  80. <goals>
  81. <goal>shade</goal>
  82. </goals>
  83. <configuration>
  84. <finalName>apache-archiva-cli-${project.version}</finalName>
  85. <transformers>
  86. <transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" />
  87. </transformers>
  88. <artifactSet>
  89. <excludes>
  90. <exclude>xerces:xercesImpl</exclude>
  91. <exclude>xml-apis:xml-apis</exclude>
  92. <exclude>xalan:xalan</exclude>
  93. <exclude>commons-beanutils:commons-beanutils</exclude>
  94. <exclude>commons-io:commons-io</exclude>
  95. </excludes>
  96. </artifactSet>
  97. </configuration>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-jar-plugin</artifactId>
  104. <version>2.1</version>
  105. <configuration>
  106. <archive>
  107. <manifest>
  108. <mainClass>org.apache.maven.archiva.cli.ArchivaCli</mainClass>
  109. </manifest>
  110. </archive>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>