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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  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>server</artifactId>
  7. <version>6.5</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-server</artifactId>
  11. <name>SonarQube :: Server</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.slf4j</groupId>
  15. <artifactId>slf4j-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.slf4j</groupId>
  19. <artifactId>jcl-over-slf4j</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.slf4j</groupId>
  23. <artifactId>log4j-over-slf4j</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.slf4j</groupId>
  27. <artifactId>jul-to-slf4j</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>ch.qos.logback</groupId>
  31. <artifactId>logback-access</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>ch.qos.logback</groupId>
  35. <artifactId>logback-classic</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-core</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.tomcat.embed</groupId>
  43. <artifactId>tomcat-embed-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.code.gson</groupId>
  47. <artifactId>gson</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.h2database</groupId>
  51. <artifactId>h2</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>${project.groupId}</groupId>
  55. <artifactId>sonar-core</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>${project.groupId}</groupId>
  59. <artifactId>sonar-db-dao</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>${project.groupId}</groupId>
  63. <artifactId>sonar-db-migration</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>${project.groupId}</groupId>
  67. <artifactId>sonar-scanner-protocol</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>${project.groupId}</groupId>
  71. <artifactId>sonar-markdown</artifactId>
  72. <exclusions>
  73. <exclusion>
  74. <!-- already shaded with sonar-plugin-api -->
  75. <groupId>org.codehaus.sonar</groupId>
  76. <artifactId>sonar-channel</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>${project.groupId}</groupId>
  82. <artifactId>sonar-process</artifactId>
  83. <version>${project.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.sonarsource.update-center</groupId>
  87. <artifactId>sonar-update-center-common</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>${project.groupId}</groupId>
  91. <artifactId>sonar-plugin-api</artifactId>
  92. <version>${project.version}</version>
  93. <exclusions>
  94. <exclusion>
  95. <!-- not used at runtime -->
  96. <groupId>com.google.code.findbugs</groupId>
  97. <artifactId>jsr305</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>org.apache.maven.shared</groupId>
  101. <artifactId>maven-dependency-tree</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>org.apache.maven.shared</groupId>
  105. <artifactId>maven-common-artifact-filters</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>org.apache.maven</groupId>
  109. <artifactId>maven-project</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.sonarsource.sonarqube</groupId>
  115. <artifactId>sonar-ce-api</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-beanutils</groupId>
  119. <artifactId>commons-beanutils</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-dbutils</groupId>
  123. <artifactId>commons-dbutils</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-email</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-io</groupId>
  131. <artifactId>commons-io</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-lang</groupId>
  135. <artifactId>commons-lang</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.picocontainer</groupId>
  139. <artifactId>picocontainer</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-codec</groupId>
  143. <artifactId>commons-codec</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-dbcp</groupId>
  147. <artifactId>commons-dbcp</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.elasticsearch</groupId>
  151. <artifactId>elasticsearch</artifactId>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.elasticsearch</groupId>
  155. <artifactId>elasticsearch</artifactId>
  156. <version>${elasticsearch.version}</version>
  157. <scope>test</scope>
  158. <type>test-jar</type>
  159. </dependency>
  160. <dependency>
  161. <groupId>net.java.dev.jna</groupId>
  162. <artifactId>jna</artifactId>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.google.protobuf</groupId>
  166. <artifactId>protobuf-java</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>${project.groupId}</groupId>
  170. <artifactId>sonar-ws</artifactId>
  171. <version>${project.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.google.code.findbugs</groupId>
  175. <artifactId>jsr305</artifactId>
  176. <scope>provided</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>${project.groupId}</groupId>
  180. <artifactId>sonar-plugin-bridge</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>io.jsonwebtoken</groupId>
  184. <artifactId>jjwt</artifactId>
  185. </dependency>
  186. <!-- unit tests -->
  187. <dependency>
  188. <groupId>junit</groupId>
  189. <artifactId>junit</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.assertj</groupId>
  194. <artifactId>assertj-core</artifactId>
  195. <scope>test</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.assertj</groupId>
  199. <artifactId>assertj-guava</artifactId>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.mockito</groupId>
  204. <artifactId>mockito-core</artifactId>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <!-- TODO to be removed -->
  209. <groupId>org.hamcrest</groupId>
  210. <artifactId>hamcrest-all</artifactId>
  211. <scope>test</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>${project.groupId}</groupId>
  215. <artifactId>sonar-db-testing</artifactId>
  216. <type>pom</type>
  217. <scope>test</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.github.tlrx</groupId>
  221. <artifactId>elasticsearch-test</artifactId>
  222. <scope>test</scope>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.tngtech.java</groupId>
  226. <artifactId>junit-dataprovider</artifactId>
  227. <scope>test</scope>
  228. </dependency>
  229. <dependency>
  230. <groupId>com.github.kevinsawicki</groupId>
  231. <artifactId>http-request</artifactId>
  232. <scope>test</scope>
  233. </dependency>
  234. <dependency>
  235. <groupId>${project.groupId}</groupId>
  236. <artifactId>sonar-search</artifactId>
  237. <version>${project.version}</version>
  238. <scope>test</scope>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.reflections</groupId>
  242. <artifactId>reflections</artifactId>
  243. <scope>test</scope>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.subethamail</groupId>
  247. <artifactId>subethasmtp</artifactId>
  248. <scope>test</scope>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.squareup.okhttp3</groupId>
  252. <artifactId>mockwebserver</artifactId>
  253. <scope>test</scope>
  254. </dependency>
  255. </dependencies>
  256. <build>
  257. <resources>
  258. <resource>
  259. <directory>src/main/resources</directory>
  260. <filtering>true</filtering>
  261. <includes>
  262. <include>build.properties</include>
  263. </includes>
  264. </resource>
  265. <resource>
  266. <directory>src/main/resources</directory>
  267. <filtering>false</filtering>
  268. <excludes>
  269. <exclude>build.properties</exclude>
  270. </excludes>
  271. </resource>
  272. </resources>
  273. <testResources>
  274. <testResource>
  275. <directory>src/test/resources</directory>
  276. <filtering>false</filtering>
  277. </testResource>
  278. <testResource>
  279. <directory>src/test/projects</directory>
  280. <filtering>false</filtering>
  281. </testResource>
  282. </testResources>
  283. <plugins>
  284. <plugin>
  285. <groupId>org.apache.maven.plugins</groupId>
  286. <artifactId>maven-jar-plugin</artifactId>
  287. <executions>
  288. <execution>
  289. <goals>
  290. <goal>test-jar</goal>
  291. </goals>
  292. </execution>
  293. </executions>
  294. <configuration>
  295. <archive>
  296. <manifest>
  297. <addClasspath>true</addClasspath>
  298. <mainClass>org.sonar.server.app.App</mainClass>
  299. </manifest>
  300. </archive>
  301. </configuration>
  302. </plugin>
  303. </plugins>
  304. </build>
  305. </project>