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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.codehaus.sonar-plugins</groupId>
  5. <artifactId>parent</artifactId>
  6. <version>17</version>
  7. </parent>
  8. <groupId>org.codehaus.sonar.runner</groupId>
  9. <artifactId>sonar-runner</artifactId>
  10. <version>2.3-SNAPSHOT</version>
  11. <packaging>pom</packaging>
  12. <name>Sonar Runner</name>
  13. <url>http://docs.codehaus.org/display/SONAR/Analyzing+with+Sonar+Runner</url>
  14. <inceptionYear>2011</inceptionYear>
  15. <!-- Overridding default properties to be able to deploy the release -->
  16. <distributionManagement>
  17. <repository>
  18. <id>codehaus-nexus-staging</id>
  19. <name>Codehaus Release Repository</name>
  20. <url>https://nexus.codehaus.org/service/local/staging/deploy/maven2/</url>
  21. </repository>
  22. </distributionManagement>
  23. <modules>
  24. <module>sonar-runner-api</module>
  25. <module>sonar-runner-batch</module>
  26. <module>sonar-runner-dist</module>
  27. <module>sonar-runner-impl</module>
  28. </modules>
  29. <organization>
  30. <name>SonarSource</name>
  31. <url>http://www.sonarsource.com</url>
  32. </organization>
  33. <licenses>
  34. <license>
  35. <name>GNU LGPL 3</name>
  36. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  37. <distribution>repo</distribution>
  38. </license>
  39. </licenses>
  40. <scm>
  41. <connection>scm:git:git@github.com:SonarSource/sonar-runner.git</connection>
  42. <developerConnection>scm:git:git@github.com:SonarSource/sonar-runner.git</developerConnection>
  43. <url>https://github.com/SonarSource/sonar-runner</url>
  44. <tag>HEAD</tag>
  45. </scm>
  46. <issueManagement>
  47. <system>JIRA</system>
  48. <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/14640</url>
  49. </issueManagement>
  50. <properties>
  51. <sonar.buildVersion>3.5</sonar.buildVersion>
  52. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  53. </properties>
  54. <profiles>
  55. <profile>
  56. <id>release</id>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-javadoc-plugin</artifactId>
  62. <version>2.9</version>
  63. <executions>
  64. <execution>
  65. <id>attach-javadocs</id>
  66. <goals>
  67. <goal>jar</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-gpg-plugin</artifactId>
  75. <version>1.4</version>
  76. <executions>
  77. <execution>
  78. <id>sign-artifacts</id>
  79. <phase>verify</phase>
  80. <goals>
  81. <goal>sign</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </profile>
  89. </profiles>
  90. <dependencyManagement>
  91. <dependencies>
  92. <dependency>
  93. <groupId>commons-lang</groupId>
  94. <artifactId>commons-lang</artifactId>
  95. <version>2.6</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.easytesting</groupId>
  99. <artifactId>fest-assert</artifactId>
  100. <version>1.4</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.kevinsawicki</groupId>
  104. <artifactId>http-request</artifactId>
  105. <version>4.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.google.code.findbugs</groupId>
  109. <artifactId>jsr305</artifactId>
  110. <version>2.0.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>junit</groupId>
  114. <artifactId>junit</artifactId>
  115. <version>4.11</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.mockito</groupId>
  119. <artifactId>mockito-all</artifactId>
  120. <version>1.9.5</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.codehaus.sonar</groupId>
  124. <artifactId>sonar-home</artifactId>
  125. <version>3.5</version>
  126. </dependency>
  127. </dependencies>
  128. </dependencyManagement>
  129. <build>
  130. <pluginManagement>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-dependency-plugin</artifactId>
  135. <version>2.7</version>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-shade-plugin</artifactId>
  140. <version>1.7.1</version>
  141. </plugin>
  142. </plugins>
  143. </pluginManagement>
  144. </build>
  145. </project>