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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2009-2010, Google Inc.
  4. Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
  5. Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
  6. and other copyright owners as documented in the project's IP log.
  7. This program and the accompanying materials are made available
  8. under the terms of the Eclipse Distribution License v1.0 which
  9. accompanies this distribution, is reproduced below, and is
  10. available at http://www.eclipse.org/org/documents/edl-v10.php
  11. All rights reserved.
  12. Redistribution and use in source and binary forms, with or
  13. without modification, are permitted provided that the following
  14. conditions are met:
  15. - Redistributions of source code must retain the above copyright
  16. notice, this list of conditions and the following disclaimer.
  17. - Redistributions in binary form must reproduce the above
  18. copyright notice, this list of conditions and the following
  19. disclaimer in the documentation and/or other materials provided
  20. with the distribution.
  21. - Neither the name of the Eclipse Foundation, Inc. nor the
  22. names of its contributors may be used to endorse or promote
  23. products derived from this software without specific prior
  24. written permission.
  25. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  26. CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  27. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  28. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  30. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  31. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  32. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  33. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  34. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  35. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  36. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  37. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. -->
  39. <project xmlns="http://maven.apache.org/POM/4.0.0"
  40. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  41. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  42. <modelVersion>4.0.0</modelVersion>
  43. <parent>
  44. <groupId>org.eclipse.jgit</groupId>
  45. <artifactId>org.eclipse.jgit-parent</artifactId>
  46. <version>4.1.2.201602141800-r</version>
  47. </parent>
  48. <artifactId>org.eclipse.jgit.http.server</artifactId>
  49. <name>JGit - HTTP Server</name>
  50. <description>
  51. Git aware HTTP server implementation.
  52. </description>
  53. <properties>
  54. <translate-qualifier/>
  55. </properties>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.eclipse.jgit</groupId>
  59. <artifactId>org.eclipse.jgit</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>javax.servlet-api</artifactId>
  65. <scope>provided</scope>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <sourceDirectory>src/</sourceDirectory>
  70. <resources>
  71. <resource>
  72. <directory>.</directory>
  73. <includes>
  74. <include>plugin.properties</include>
  75. <include>about.html</include>
  76. </includes>
  77. </resource>
  78. <resource>
  79. <directory>resources/</directory>
  80. </resource>
  81. </resources>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-source-plugin</artifactId>
  86. <inherited>true</inherited>
  87. <executions>
  88. <execution>
  89. <id>attach-sources</id>
  90. <phase>process-classes</phase>
  91. <goals>
  92. <goal>jar</goal>
  93. </goals>
  94. <configuration>
  95. <archive>
  96. <manifestFile>${source-bundle-manifest}</manifestFile>
  97. </archive>
  98. </configuration>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-jar-plugin</artifactId>
  104. <configuration>
  105. <archive>
  106. <manifestFile>${bundle-manifest}</manifestFile>
  107. </archive>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.codehaus.mojo</groupId>
  112. <artifactId>clirr-maven-plugin</artifactId>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. <reporting>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.codehaus.mojo</groupId>
  120. <artifactId>clirr-maven-plugin</artifactId>
  121. <version>${clirr-version}</version>
  122. <configuration>
  123. <comparisonVersion>${jgit-last-release-version}</comparisonVersion>
  124. <minSeverity>info</minSeverity>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </reporting>
  129. </project>