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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonarsource.sonarqube</groupId>
  6. <artifactId>sonarqube</artifactId>
  7. <version>7.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-plugin-api-deps</artifactId>
  10. <name>SonarQube :: Plugin API Dependencies</name>
  11. <description>Deprecated transitive dependencies of sonar-plugin-api</description>
  12. <properties>
  13. <maven.deploy.skip>true</maven.deploy.skip>
  14. </properties>
  15. <dependencies>
  16. <!--
  17. Versions must not be changed and overridden from parent pom. These are
  18. the versions defined in SQ 5.1
  19. -->
  20. <dependency>
  21. <groupId>com.google.code.gson</groupId>
  22. <artifactId>gson</artifactId>
  23. <version>2.3.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.google.guava</groupId>
  27. <artifactId>guava</artifactId>
  28. <version>10.0.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-beanutils</groupId>
  32. <artifactId>commons-beanutils</artifactId>
  33. <version>1.9.3</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-codec</groupId>
  37. <artifactId>commons-codec</artifactId>
  38. <version>1.8</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-collections</groupId>
  42. <artifactId>commons-collections</artifactId>
  43. <version>3.2.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.commons</groupId>
  47. <artifactId>commons-email</artifactId>
  48. <version>1.3.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-io</groupId>
  52. <artifactId>commons-io</artifactId>
  53. <version>2.4</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-lang</groupId>
  57. <artifactId>commons-lang</artifactId>
  58. <version>2.6</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>dom4j</groupId>
  62. <artifactId>dom4j</artifactId>
  63. <version>1.6.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>xml-apis</groupId>
  67. <artifactId>xml-apis</artifactId>
  68. <version>1.4.01</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.picocontainer</groupId>
  72. <artifactId>picocontainer</artifactId>
  73. <version>2.14.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-api</artifactId>
  78. <version>1.7.10</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>ch.qos.logback</groupId>
  82. <artifactId>logback-classic</artifactId>
  83. <version>1.1.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>ch.qos.logback</groupId>
  87. <artifactId>logback-core</artifactId>
  88. <version>1.1.2</version>
  89. </dependency>
  90. <!-- Needed by old versions of Java plugin (JavaClasspath) -->
  91. <dependency>
  92. <groupId>org.apache.maven</groupId>
  93. <artifactId>maven-core</artifactId>
  94. <version>3.0.5</version>
  95. <exclusions>
  96. <exclusion>
  97. <!-- See SONAR-2455 -->
  98. <groupId>classworlds</groupId>
  99. <artifactId>classworlds</artifactId>
  100. </exclusion>
  101. <exclusion>
  102. <!-- this fork conflicts with google's guava -->
  103. <groupId>org.sonatype.sisu</groupId>
  104. <artifactId>sisu-guava</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.maven</groupId>
  110. <artifactId>maven-artifact</artifactId>
  111. <version>3.0.5</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.codehaus.sonar</groupId>
  115. <artifactId>sonar-squid</artifactId>
  116. <version>4.1</version>
  117. <exclusions>
  118. <exclusion>
  119. <!--
  120. Provided at runtime by sonar-plugin-api.
  121. Do not use transitive version 4.1 but the current version.
  122. -->
  123. <groupId>org.codehaus.sonar</groupId>
  124. <artifactId>sonar-check-api</artifactId>
  125. </exclusion>
  126. </exclusions>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.codehaus.sonar</groupId>
  130. <artifactId>sonar-java-api</artifactId>
  131. <version>5.1</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>org.codehaus.sonar</groupId>
  135. <artifactId>sonar-deprecated</artifactId>
  136. </exclusion>
  137. <exclusion>
  138. <groupId>org.codehaus.sonar</groupId>
  139. <artifactId>sonar-plugin-api</artifactId>
  140. </exclusion>
  141. </exclusions>
  142. </dependency>
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-shade-plugin</artifactId>
  149. <executions>
  150. <execution>
  151. <phase>package</phase>
  152. <goals>
  153. <goal>shade</goal>
  154. </goals>
  155. <configuration>
  156. <minimizeJar>false</minimizeJar>
  157. </configuration>
  158. </execution>
  159. </executions>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-jar-plugin</artifactId>
  164. <executions>
  165. <execution>
  166. <id>empty-javadoc-jar</id>
  167. <phase>package</phase>
  168. <goals>
  169. <goal>jar</goal>
  170. </goals>
  171. <configuration>
  172. <classifier>javadoc</classifier>
  173. </configuration>
  174. </execution>
  175. <execution>
  176. <id>empty-sources-jar</id>
  177. <phase>package</phase>
  178. <goals>
  179. <goal>jar</goal>
  180. </goals>
  181. <configuration>
  182. <classifier>sources</classifier>
  183. </configuration>
  184. </execution>
  185. </executions>
  186. </plugin>
  187. </plugins>
  188. </build>
  189. <profiles>
  190. <!--
  191. This module contains deprecated dependencies (containing vulnerability issues) for plugins built for SonarQube < 5.2
  192. It will be removed for 7.0
  193. -->
  194. <profile>
  195. <!--
  196. check if maven dependencies have vulnerabilities listed in CVE
  197. Standalone command: mvn org.owasp:dependency-check-maven:check
  198. See http://jeremylong.github.io/DependencyCheck
  199. -->
  200. <id>securityCheck</id>
  201. <build>
  202. <plugins>
  203. <plugin>
  204. <groupId>org.owasp</groupId>
  205. <artifactId>dependency-check-maven</artifactId>
  206. <executions>
  207. <execution>
  208. <goals>
  209. <goal>check</goal>
  210. </goals>
  211. <configuration>
  212. <skip>true</skip>
  213. </configuration>
  214. </execution>
  215. </executions>
  216. </plugin>
  217. </plugins>
  218. </build>
  219. </profile>
  220. </profiles>
  221. </project>