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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!--
  2. ~ Licensed to the Apache Software Foundation (ASF) under one
  3. ~ or more contributor license agreements. See the NOTICE file
  4. ~ distributed with this work for additional information
  5. ~ regarding copyright ownership. The ASF licenses this file
  6. ~ to you under the Apache License, Version 2.0 (the
  7. ~ "License"); you may not use this file except in compliance
  8. ~ with the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing,
  13. ~ software distributed under the License is distributed on an
  14. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. ~ KIND, either express or implied. See the License for the
  16. ~ specific language governing permissions and limitations
  17. ~ under the License.
  18. -->
  19. <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">
  20. <parent>
  21. <groupId>org.apache.maven.archiva</groupId>
  22. <artifactId>archiva</artifactId>
  23. <version>1.0-SNAPSHOT</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>archiva-site</artifactId>
  27. <packaging>pom</packaging>
  28. <name>Archiva Documentation</name>
  29. <url>http://maven.apache.org/archiva/docs/${project.version}/</url>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <artifactId>maven-assembly-plugin</artifactId>
  34. <version>2.1</version>
  35. <configuration>
  36. <descriptor>src/site/assembly/docs.xml</descriptor>
  37. </configuration>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>attached</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. <finalName>apache-archiva-${project.version}</finalName>
  49. </build>
  50. <reporting>
  51. <excludeDefaults>true</excludeDefaults>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-project-info-reports-plugin</artifactId>
  56. <version>2.0.1</version>
  57. <reportSets>
  58. <reportSet>
  59. <reports>
  60. <report>license</report>
  61. <report>project-team</report>
  62. </reports>
  63. </reportSet>
  64. </reportSets>
  65. </plugin>
  66. </plugins>
  67. </reporting>
  68. <!-- prevent automatic artifactId appending -->
  69. <scm>
  70. <connection>scm:svn:http://svn.apache.org/repos/asf/maven/archiva/trunk/</connection>
  71. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/archiva/trunk/</developerConnection>
  72. <url>http://svn.apache.org/viewcvs.cgi/maven/archiva/trunk/</url>
  73. </scm>
  74. <distributionManagement>
  75. <site>
  76. <id>apache.website</id>
  77. <url>${siteBaseDeployment}/docs/${project.version}</url>
  78. </site>
  79. </distributionManagement>
  80. </project>