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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.sonarsource.parent</groupId>
  8. <artifactId>parent</artifactId>
  9. <version>48</version>
  10. </parent>
  11. <groupId>org.sonarsource.sonarqube</groupId>
  12. <artifactId>sonarqube</artifactId>
  13. <packaging>pom</packaging>
  14. <version>6.7.6</version>
  15. <name>SonarQube</name>
  16. <url>http://www.sonarqube.org/</url>
  17. <description>Open source platform for continuous inspection of code quality</description>
  18. <modules>
  19. <module>sonar-plugin-api-deps</module>
  20. <module>sonar-application</module>
  21. <module>sonar-scanner-engine</module>
  22. <module>sonar-scanner-protocol</module>
  23. <module>sonar-scanner-engine-shaded</module>
  24. <module>sonar-check-api</module>
  25. <module>sonar-core</module>
  26. <module>sonar-duplications</module>
  27. <module>sonar-home</module>
  28. <module>sonar-markdown</module>
  29. <module>sonar-plugin-api</module>
  30. <module>server</module>
  31. <module>sonar-ws</module>
  32. <module>sonar-testing-harness</module>
  33. <module>plugins/sonar-xoo-plugin</module>
  34. </modules>
  35. <organization>
  36. <name>SonarSource</name>
  37. <url>http://www.sonarsource.com</url>
  38. </organization>
  39. <inceptionYear>2009</inceptionYear>
  40. <issueManagement>
  41. <system>jira</system>
  42. <url>http://jira.sonarsource.com/browse/SONAR</url>
  43. </issueManagement>
  44. <properties>
  45. <!-- see http://repo1.maven.org/maven2/org/sonarsource/dotnet/sonar-csharp-plugin/ -->
  46. <!-- Do not forget to exclude any new transitive dependencies -->
  47. <sonarCSharp.version>6.5.0.3766</sonarCSharp.version>
  48. <!-- see http://repo1.maven.org/maven2/org/sonarsource/java/sonar-java-plugin/ -->
  49. <!-- Do not forget to exclude any new transitive dependencies -->
  50. <sonarJava.version>4.15.0.12310</sonarJava.version>
  51. <!-- see http://repo1.maven.org/maven2/org/sonarsource/javascript/sonar-javascript-plugin/ -->
  52. <!-- Do not forget to exclude any new transitive dependencies -->
  53. <sonarJavaScript.version>3.2.0.5506</sonarJavaScript.version>
  54. <!-- see http://repo1.maven.org/maven2/org/sonarsource/php/sonar-php-plugin/ -->
  55. <!-- Do not forget to exclude any new transitive dependencies -->
  56. <sonarPhp.version>2.11.0.2485</sonarPhp.version>
  57. <!-- see http://repo1.maven.org/maven2/org/sonarsource/python/sonar-python-plugin/ -->
  58. <!-- Do not forget to exclude any new transitive dependencies -->
  59. <sonarPython.version>1.8.0.1496</sonarPython.version>
  60. <!-- see http://repo1.maven.org/maven2/org/sonarsource/flex/sonar-flex-plugin/ -->
  61. <!-- Do not forget to exclude any new transitive dependencies -->
  62. <sonarFlex.version>2.3</sonarFlex.version>
  63. <!-- see http://repo1.maven.org/maven2/org/sonarsource/xml/sonar-xml-plugin/ -->
  64. <!-- Do not forget to exclude any new transitive dependencies -->
  65. <sonarXml.version>1.4.3.1027</sonarXml.version>
  66. <!-- see https://repo1.maven.org/maven2/org/sonarsource/typescript/sonar-typescript-plugin/ -->
  67. <sonarTs.version>1.1.0.1079</sonarTs.version>
  68. <!-- see http://repo1.maven.org/maven2/org/sonarsource/scm/git/sonar-scm-git-plugin/ -->
  69. <sonarGit.version>1.3.0.869</sonarGit.version>
  70. <!-- see http://repo1.maven.org/maven2/org/sonarsource/scm/svn/sonar-scm-svn-plugin/ -->
  71. <sonarSvn.version>1.6.0.860</sonarSvn.version>
  72. <sonarUpdateCenter.version>1.18.0.487</sonarUpdateCenter.version>
  73. <h2.version>1.3.176</h2.version>
  74. <jetty.version>8.1.12.v20130726</jetty.version>
  75. <logback.version>1.2.3</logback.version>
  76. <slf4j.version>1.7.25</slf4j.version>
  77. <!-- Be aware that Log4j is used by Elasticsearch client -->
  78. <log4j.version>2.8.2</log4j.version>
  79. <tomcat.version>8.5.23</tomcat.version>
  80. <elasticsearch.version>5.6.3</elasticsearch.version>
  81. <orchestrator.version>3.15.0.1256</orchestrator.version>
  82. <okhttp.version>3.7.0</okhttp.version>
  83. <jackson.version>2.9.5</jackson.version>
  84. <jjwt.version>0.9.0</jjwt.version>
  85. <protobuf.version>3.0.0-beta-2</protobuf.version>
  86. <hazelcast.version>3.8.6</hazelcast.version>
  87. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  88. <maven.min.version>3.3.9</maven.min.version>
  89. <timestamp>${maven.build.timestamp}</timestamp>
  90. <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
  91. <license.title>SonarQube</license.title>
  92. <skipSanityChecks>false</skipSanityChecks>
  93. <argLine>-Xmx512m -Djava.awt.headless=true</argLine>
  94. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  95. <!-- used for deployment to SonarSource Artifactory -->
  96. <gitRepositoryName>sonarqube</gitRepositoryName>
  97. <!-- Release: enable publication to Bintray -->
  98. <artifactsToPublish>${project.groupId}:sonar-application:zip</artifactsToPublish>
  99. </properties>
  100. <build>
  101. <extensions>
  102. <extension>
  103. <groupId>kr.motd.maven</groupId>
  104. <artifactId>os-maven-plugin</artifactId>
  105. <version>1.5.0.Final</version>
  106. </extension>
  107. </extensions>
  108. <pluginManagement>
  109. <!-- Plugins ordered by shortname (assembly, antrun ...) -->
  110. <plugins>
  111. <plugin>
  112. <groupId>com.github.eirslett</groupId>
  113. <artifactId>frontend-maven-plugin</artifactId>
  114. <version>1.6</version>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-assembly-plugin</artifactId>
  119. <version>3.1.0</version>
  120. <configuration>
  121. <archiverConfig>
  122. <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
  123. <!-- 420(dec) = 644(oct) -->
  124. <fileMode>420</fileMode>
  125. <!-- 493(dec) = 755(oct) -->
  126. <directoryMode>493</directoryMode>
  127. <defaultDirectoryMode>493</defaultDirectoryMode>
  128. </archiverConfig>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.codehaus.mojo</groupId>
  133. <artifactId>build-helper-maven-plugin</artifactId>
  134. <version>3.0.0</version>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-clean-plugin</artifactId>
  139. <version>3.0.0</version>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-dependency-plugin</artifactId>
  144. <version>3.0.2</version>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-enforcer-plugin</artifactId>
  149. <version>3.0.0-M1</version>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-gpg-plugin</artifactId>
  154. <version>1.6</version>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.jacoco</groupId>
  158. <artifactId>jacoco-maven-plugin</artifactId>
  159. <version>0.7.9</version>
  160. <configuration>
  161. <excludes>
  162. <exclude>*_javassist_*</exclude>
  163. </excludes>
  164. <includes>
  165. <include>org.sonar.*</include>
  166. <include>org.sonarqube.*</include>
  167. </includes>
  168. </configuration>
  169. </plugin>
  170. <plugin>
  171. <groupId>org.apache.maven.plugins</groupId>
  172. <artifactId>maven-javadoc-plugin</artifactId>
  173. <version>3.0.0-M1</version>
  174. <configuration>
  175. <author>false</author>
  176. <linksource>true</linksource>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-jar-plugin</artifactId>
  182. <version>3.0.2</version>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-jxr-plugin</artifactId>
  187. <version>2.5</version>
  188. </plugin>
  189. <plugin>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-resources-plugin</artifactId>
  192. <version>3.0.2</version>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-shade-plugin</artifactId>
  197. <version>3.1.0</version>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-source-plugin</artifactId>
  202. <version>3.0.1</version>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-surefire-plugin</artifactId>
  207. <version>2.20.1</version>
  208. </plugin>
  209. <plugin>
  210. <groupId>org.apache.maven.plugins</groupId>
  211. <artifactId>maven-war-plugin</artifactId>
  212. <version>3.2.0</version>
  213. </plugin>
  214. <plugin>
  215. <!-- not thread safe -->
  216. <groupId>org.codehaus.sonar</groupId>
  217. <artifactId>sonar-dev-maven-plugin</artifactId>
  218. <version>1.8</version>
  219. </plugin>
  220. <plugin>
  221. <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
  222. <artifactId>sonar-packaging-maven-plugin</artifactId>
  223. <version>1.18.0.372</version>
  224. </plugin>
  225. <plugin>
  226. <groupId>org.owasp</groupId>
  227. <artifactId>dependency-check-maven</artifactId>
  228. <version>3.0.1</version>
  229. <configuration>
  230. <failBuildOnCVSS>8</failBuildOnCVSS>
  231. <suppressionFile>dependency-check-suppressions.xml</suppressionFile>
  232. <enableExperimental>true</enableExperimental>
  233. </configuration>
  234. </plugin>
  235. <plugin>
  236. <!--
  237. Detection of conflicts in classpath.
  238. Command line is: mvn org.basepom.maven:duplicate-finder-maven-plugin:check
  239. See https://github.com/basepom/duplicate-finder-maven-plugin
  240. -->
  241. <groupId>org.basepom.maven</groupId>
  242. <artifactId>duplicate-finder-maven-plugin</artifactId>
  243. <version>1.1.1</version>
  244. <configuration>
  245. <printEqualFiles>true</printEqualFiles>
  246. <!--
  247. <failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict>
  248. <failBuildInCaseOfEqualContentConflict>true</failBuildInCaseOfEqualContentConflict>
  249. <failBuildInCaseOfConflict>true</failBuildInCaseOfConflict>
  250. -->
  251. <checkCompileClasspath>true</checkCompileClasspath>
  252. <checkRuntimeClasspath>true</checkRuntimeClasspath>
  253. <checkTestClasspath>false</checkTestClasspath>
  254. </configuration>
  255. </plugin>
  256. <plugin>
  257. <groupId>org.xolstice.maven.plugins</groupId>
  258. <artifactId>protobuf-maven-plugin</artifactId>
  259. <version>0.5.0</version>
  260. </plugin>
  261. <plugin>
  262. <groupId>com.github.genthaler</groupId>
  263. <artifactId>beanshell-maven-plugin</artifactId>
  264. <version>1.4</version>
  265. </plugin>
  266. </plugins>
  267. </pluginManagement>
  268. <plugins>
  269. <plugin>
  270. <groupId>org.apache.maven.plugins</groupId>
  271. <artifactId>maven-enforcer-plugin</artifactId>
  272. <executions>
  273. <execution>
  274. <id>enforce-rules</id>
  275. <goals>
  276. <goal>enforce</goal>
  277. </goals>
  278. <configuration>
  279. <rules>
  280. <requirePluginVersions>
  281. <message>Build reproducibility : always define plugin versions</message>
  282. <banLatest>true</banLatest>
  283. <banRelease>true</banRelease>
  284. <phases>clean,deploy</phases>
  285. </requirePluginVersions>
  286. <requireReleaseDeps>
  287. <message>No SNAPSHOT versions allowed for dependencies</message>
  288. <onlyWhenRelease>true</onlyWhenRelease>
  289. </requireReleaseDeps>
  290. <requireJavaVersion>
  291. <message>To build this project JDK ${jdk.min.version} (or upper) is required. Please install it.
  292. </message>
  293. <version>${jdk.min.version}</version>
  294. </requireJavaVersion>
  295. <requireMavenVersion>
  296. <version>[${maven.min.version},)</version>
  297. </requireMavenVersion>
  298. <bannedDependencies>
  299. <!-- See SONAR-2512 -->
  300. <message>commons-beanutils:commons-beanutils should be used instead</message>
  301. <excludes>
  302. <exclude>commons-beanutils:commons-beanutils-core</exclude>
  303. </excludes>
  304. <searchTransitive>true</searchTransitive>
  305. </bannedDependencies>
  306. <requireNoRepositories>
  307. <message>Definition of new repositories is not allowed in order to deploy to central repository.
  308. </message>
  309. </requireNoRepositories>
  310. </rules>
  311. </configuration>
  312. </execution>
  313. </executions>
  314. </plugin>
  315. <!--
  316. Choosing a random timezone when executing tests allows to detect
  317. early the tests that are coupled with local environment.
  318. -->
  319. <plugin>
  320. <groupId>com.github.genthaler</groupId>
  321. <artifactId>beanshell-maven-plugin</artifactId>
  322. <executions>
  323. <execution>
  324. <id>randomize-environment</id>
  325. <phase>validate</phase>
  326. <goals>
  327. <goal>run</goal>
  328. </goals>
  329. <configuration>
  330. <quiet>true</quiet>
  331. <script>
  332. <![CDATA[
  333. String[] timezones = new String[] {"GMT-9", "UTC", "GMT+9"};
  334. String testTimezone = timezones[new java.util.Random().nextInt(timezones.length)];
  335. project.getProperties().setProperty("testTimezone", testTimezone);
  336. logger.info("Timezone used for tests: " + testTimezone);
  337. ]]>
  338. </script>
  339. </configuration>
  340. </execution>
  341. </executions>
  342. </plugin>
  343. <plugin>
  344. <groupId>org.apache.maven.plugins</groupId>
  345. <artifactId>maven-jxr-plugin</artifactId>
  346. <configuration>
  347. <aggregate>true</aggregate>
  348. <linkJavadoc>true</linkJavadoc>
  349. <javadocDir>${project.reporting.outputDirectory}/${project.version}/apidocs</javadocDir>
  350. </configuration>
  351. </plugin>
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-surefire-plugin</artifactId>
  355. <configuration>
  356. <runOrder>random</runOrder>
  357. <systemPropertyVariables>
  358. <!-- keep system temp directory clean -->
  359. <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
  360. <!--
  361. See profile 'randomize-environment'
  362. -->
  363. <user.timezone>${testTimezone}</user.timezone>
  364. </systemPropertyVariables>
  365. <threadCount>1</threadCount>
  366. </configuration>
  367. </plugin>
  368. </plugins>
  369. </build>
  370. <dependencyManagement>
  371. <dependencies>
  372. <!-- SonarQube modules -->
  373. <dependency>
  374. <groupId>org.codehaus.sonar</groupId>
  375. <artifactId>sonar-channel</artifactId>
  376. <version>4.1</version>
  377. <exclusions>
  378. <exclusion>
  379. <groupId>org.slf4j</groupId>
  380. <artifactId>slf4j-api</artifactId>
  381. </exclusion>
  382. </exclusions>
  383. </dependency>
  384. <dependency>
  385. <groupId>org.codehaus.sonar</groupId>
  386. <artifactId>sonar-classloader</artifactId>
  387. <version>1.0</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>${project.groupId}</groupId>
  391. <artifactId>sonar-markdown</artifactId>
  392. <version>${project.version}</version>
  393. </dependency>
  394. <dependency>
  395. <groupId>${project.groupId}</groupId>
  396. <artifactId>sonar-core</artifactId>
  397. <version>${project.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>${project.groupId}</groupId>
  401. <artifactId>sonar-db-dao</artifactId>
  402. <version>${project.version}</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>${project.groupId}</groupId>
  406. <artifactId>sonar-db-migration</artifactId>
  407. <version>${project.version}</version>
  408. </dependency>
  409. <dependency>
  410. <groupId>${project.groupId}</groupId>
  411. <artifactId>sonar-db-testing</artifactId>
  412. <version>${project.version}</version>
  413. <type>pom</type>
  414. </dependency>
  415. <dependency>
  416. <groupId>${project.groupId}</groupId>
  417. <artifactId>sonar-scanner-protocol</artifactId>
  418. <version>${project.version}</version>
  419. </dependency>
  420. <dependency>
  421. <groupId>${project.groupId}</groupId>
  422. <artifactId>sonar-ws</artifactId>
  423. <version>${project.version}</version>
  424. </dependency>
  425. <dependency>
  426. <groupId>${project.groupId}</groupId>
  427. <artifactId>sonar-home</artifactId>
  428. <version>${project.version}</version>
  429. </dependency>
  430. <dependency>
  431. <groupId>${project.groupId}</groupId>
  432. <artifactId>sonar-plugin-api</artifactId>
  433. <version>${project.version}</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>${project.groupId}</groupId>
  437. <artifactId>sonar-process</artifactId>
  438. <version>${project.version}</version>
  439. </dependency>
  440. <dependency>
  441. <groupId>${project.groupId}</groupId>
  442. <artifactId>sonar-server</artifactId>
  443. <version>${project.version}</version>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.sonarsource.update-center</groupId>
  447. <artifactId>sonar-update-center-common</artifactId>
  448. <version>${sonarUpdateCenter.version}</version>
  449. </dependency>
  450. <dependency>
  451. <groupId>org.codehaus.sonar</groupId>
  452. <artifactId>sonar-squid</artifactId>
  453. <version>4.1</version>
  454. <exclusions>
  455. <exclusion>
  456. <!--
  457. Provided at runtime by sonar-plugin-api.
  458. Do not use transitive version 4.1 but the current version.
  459. -->
  460. <groupId>org.codehaus.sonar</groupId>
  461. <artifactId>sonar-check-api</artifactId>
  462. </exclusion>
  463. </exclusions>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.sonarsource.sonarqube</groupId>
  467. <artifactId>sonar-xoo-plugin</artifactId>
  468. <version>${project.version}</version>
  469. <scope>test</scope>
  470. </dependency>
  471. <dependency>
  472. <groupId>org.sonarsource.scm.git</groupId>
  473. <artifactId>sonar-scm-git-plugin</artifactId>
  474. <version>${sonarGit.version}</version>
  475. <type>sonar-plugin</type>
  476. <exclusions>
  477. <!--
  478. no need for transitive dependencies as only the JAR file
  479. is needed for the zip bundle
  480. -->
  481. <exclusion>
  482. <groupId>org.eclipse.jgit</groupId>
  483. <artifactId>org.eclipse.jgit</artifactId>
  484. </exclusion>
  485. </exclusions>
  486. </dependency>
  487. <dependency>
  488. <groupId>org.sonarsource.scm.svn</groupId>
  489. <artifactId>sonar-scm-svn-plugin</artifactId>
  490. <version>${sonarSvn.version}</version>
  491. <type>sonar-plugin</type>
  492. <exclusions>
  493. <!--
  494. no need for transitive dependencies as only the JAR file
  495. is needed for the zip bundle
  496. -->
  497. <exclusion>
  498. <groupId>org.tmatesoft.svnkit</groupId>
  499. <artifactId>svnkit</artifactId>
  500. </exclusion>
  501. </exclusions>
  502. </dependency>
  503. <dependency>
  504. <groupId>org.sonarsource.typescript</groupId>
  505. <artifactId>sonar-typescript-plugin</artifactId>
  506. <version>${sonarTs.version}</version>
  507. <type>sonar-plugin</type>
  508. <exclusions>
  509. <exclusion>
  510. <groupId>org.sonarsource.analyzer-commons</groupId>
  511. <artifactId>sonar-analyzer-commons</artifactId>
  512. </exclusion>
  513. </exclusions>
  514. </dependency>
  515. <dependency>
  516. <groupId>org.sonarsource.sonarqube</groupId>
  517. <artifactId>sonar-db-core</artifactId>
  518. <version>${project.version}</version>
  519. </dependency>
  520. <dependency>
  521. <groupId>org.sonarsource.sonarqube</groupId>
  522. <artifactId>sonar-db-testing</artifactId>
  523. <version>${project.version}</version>
  524. </dependency>
  525. <dependency>
  526. <groupId>org.sonarsource.sonarqube</groupId>
  527. <artifactId>sonar-testing-harness</artifactId>
  528. <version>${project.version}</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>org.sonarsource.sonarqube</groupId>
  532. <artifactId>sonar-plugin-bridge</artifactId>
  533. <version>${project.version}</version>
  534. </dependency>
  535. <dependency>
  536. <groupId>org.sonarsource.java</groupId>
  537. <artifactId>sonar-java-plugin</artifactId>
  538. <version>${sonarJava.version}</version>
  539. <type>sonar-plugin</type>
  540. <exclusions>
  541. <!--
  542. no need for transitive dependencies as only the JAR file
  543. is needed for the zip bundle
  544. -->
  545. <exclusion>
  546. <groupId>classworlds</groupId>
  547. <artifactId>classworlds</artifactId>
  548. </exclusion>
  549. <exclusion>
  550. <groupId>org.mockito</groupId>
  551. <artifactId>mockito-all</artifactId>
  552. </exclusion>
  553. <exclusion>
  554. <groupId>org.sonarsource.java</groupId>
  555. <artifactId>java-surefire</artifactId>
  556. </exclusion>
  557. <exclusion>
  558. <groupId>org.sonarsource.java</groupId>
  559. <artifactId>java-jacoco</artifactId>
  560. </exclusion>
  561. <exclusion>
  562. <groupId>org.sonarsource.java</groupId>
  563. <artifactId>java-frontend</artifactId>
  564. </exclusion>
  565. <exclusion>
  566. <groupId>org.sonarsource.java</groupId>
  567. <artifactId>java-checks</artifactId>
  568. </exclusion>
  569. </exclusions>
  570. </dependency>
  571. <dependency>
  572. <groupId>org.sonarsource.javascript</groupId>
  573. <artifactId>sonar-javascript-plugin</artifactId>
  574. <version>${sonarJavaScript.version}</version>
  575. <type>sonar-plugin</type>
  576. <exclusions>
  577. <!--
  578. no need for transitive dependencies as only the JAR file
  579. is needed for the zip bundle
  580. -->
  581. <exclusion>
  582. <groupId>org.sonarsource.javascript</groupId>
  583. <artifactId>javascript-frontend</artifactId>
  584. </exclusion>
  585. <exclusion>
  586. <groupId>org.sonarsource.javascript</groupId>
  587. <artifactId>javascript-checks</artifactId>
  588. </exclusion>
  589. </exclusions>
  590. </dependency>
  591. <dependency>
  592. <groupId>org.sonarsource.dotnet</groupId>
  593. <artifactId>sonar-csharp-plugin</artifactId>
  594. <version>${sonarCSharp.version}</version>
  595. <type>sonar-plugin</type>
  596. <exclusions>
  597. <exclusion>
  598. <groupId>org.sonarsource.dotnet</groupId>
  599. <artifactId>sonar-dotnet-tests-library</artifactId>
  600. </exclusion>
  601. <exclusion>
  602. <groupId>org.sonarsource.dotnet</groupId>
  603. <artifactId>sonar-dotnet-shared-library</artifactId>
  604. </exclusion>
  605. <exclusion>
  606. <groupId>org.sonarsource.sslr-squid-bridge</groupId>
  607. <artifactId>sslr-squid-bridge</artifactId>
  608. </exclusion>
  609. </exclusions>
  610. </dependency>
  611. <dependency>
  612. <groupId>org.sonarsource.php</groupId>
  613. <artifactId>sonar-php-plugin</artifactId>
  614. <version>${sonarPhp.version}</version>
  615. <type>sonar-plugin</type>
  616. <exclusions>
  617. <!--
  618. no need for transitive dependencies as only the JAR file
  619. is needed for the zip bundle
  620. -->
  621. <exclusion>
  622. <groupId>org.sonarsource.php</groupId>
  623. <artifactId>php-frontend</artifactId>
  624. </exclusion>
  625. <exclusion>
  626. <groupId>org.sonarsource.php</groupId>
  627. <artifactId>php-checks</artifactId>
  628. </exclusion>
  629. <exclusion>
  630. <groupId>com.thoughtworks.xstream</groupId>
  631. <artifactId>xstream</artifactId>
  632. </exclusion>
  633. </exclusions>
  634. </dependency>
  635. <dependency>
  636. <groupId>org.sonarsource.python</groupId>
  637. <artifactId>sonar-python-plugin</artifactId>
  638. <version>${sonarPython.version}</version>
  639. <type>sonar-plugin</type>
  640. <exclusions>
  641. <!--
  642. no need for transitive dependencies as only the JAR file
  643. is needed for the zip bundle
  644. -->
  645. <exclusion>
  646. <groupId>org.sonarsource.python</groupId>
  647. <artifactId>python-squid</artifactId>
  648. </exclusion>
  649. <exclusion>
  650. <groupId>org.sonarsource.python</groupId>
  651. <artifactId>python-checks</artifactId>
  652. </exclusion>
  653. <exclusion>
  654. <groupId>org.codehaus.woodstox</groupId>
  655. <artifactId>woodstox-core-lgpl</artifactId>
  656. </exclusion>
  657. <exclusion>
  658. <groupId>org.codehaus.staxmate</groupId>
  659. <artifactId>staxmate</artifactId>
  660. </exclusion>
  661. </exclusions>
  662. </dependency>
  663. <dependency>
  664. <groupId>org.sonarsource.flex</groupId>
  665. <artifactId>sonar-flex-plugin</artifactId>
  666. <version>${sonarFlex.version}</version>
  667. <type>sonar-plugin</type>
  668. <exclusions>
  669. <!--
  670. no need for transitive dependencies as only the JAR file
  671. is needed for the zip bundle
  672. -->
  673. <exclusion>
  674. <groupId>org.sonarsource.flex</groupId>
  675. <artifactId>flex-squid</artifactId>
  676. </exclusion>
  677. <exclusion>
  678. <groupId>org.sonarsource.flex</groupId>
  679. <artifactId>flex-checks</artifactId>
  680. </exclusion>
  681. </exclusions>
  682. </dependency>
  683. <dependency>
  684. <groupId>org.sonarsource.xml</groupId>
  685. <artifactId>sonar-xml-plugin</artifactId>
  686. <version>${sonarXml.version}</version>
  687. <type>sonar-plugin</type>
  688. <exclusions>
  689. <!--
  690. no need for transitive dependencies as only the JAR file
  691. is needed for the zip bundle
  692. -->
  693. <exclusion>
  694. <groupId>xalan</groupId>
  695. <artifactId>xalan</artifactId>
  696. </exclusion>
  697. <exclusion>
  698. <groupId>xerces</groupId>
  699. <artifactId>xercesImpl</artifactId>
  700. </exclusion>
  701. <exclusion>
  702. <groupId>org.sonarsource.xml</groupId>
  703. <artifactId>xml-squid</artifactId>
  704. </exclusion>
  705. </exclusions>
  706. </dependency>
  707. <dependency>
  708. <groupId>com.hazelcast</groupId>
  709. <artifactId>hazelcast</artifactId>
  710. <version>${hazelcast.version}</version>
  711. </dependency>
  712. <dependency>
  713. <groupId>com.hazelcast</groupId>
  714. <artifactId>hazelcast-client</artifactId>
  715. <version>${hazelcast.version}</version>
  716. </dependency>
  717. <dependency>
  718. <groupId>org.elasticsearch.client</groupId>
  719. <artifactId>transport</artifactId>
  720. <version>${elasticsearch.version}</version>
  721. <exclusions>
  722. <exclusion>
  723. <groupId>org.elasticsearch.plugin</groupId>
  724. <artifactId>lang-mustache-client</artifactId>
  725. </exclusion>
  726. <exclusion>
  727. <groupId>org.elasticsearch.plugin</groupId>
  728. <artifactId>transport-netty3-client</artifactId>
  729. </exclusion>
  730. </exclusions>
  731. </dependency>
  732. <dependency>
  733. <groupId>com.github.tlrx</groupId>
  734. <artifactId>elasticsearch-test</artifactId>
  735. <version>1.2.1</version>
  736. </dependency>
  737. <dependency>
  738. <groupId>com.google.guava</groupId>
  739. <artifactId>guava</artifactId>
  740. <version>18.0</version>
  741. </dependency>
  742. <dependency>
  743. <groupId>com.google.code.findbugs</groupId>
  744. <artifactId>jsr305</artifactId>
  745. <version>3.0.2</version>
  746. </dependency>
  747. <dependency>
  748. <groupId>commons-dbutils</groupId>
  749. <artifactId>commons-dbutils</artifactId>
  750. <version>1.5</version>
  751. </dependency>
  752. <dependency>
  753. <groupId>commons-io</groupId>
  754. <artifactId>commons-io</artifactId>
  755. <version>2.4</version>
  756. </dependency>
  757. <dependency>
  758. <groupId>org.apache.commons</groupId>
  759. <artifactId>commons-csv</artifactId>
  760. <version>1.4</version>
  761. </dependency>
  762. <dependency>
  763. <groupId>commons-codec</groupId>
  764. <artifactId>commons-codec</artifactId>
  765. <version>1.8</version>
  766. </dependency>
  767. <dependency>
  768. <groupId>org.apache.commons</groupId>
  769. <artifactId>commons-email</artifactId>
  770. <version>1.5</version>
  771. </dependency>
  772. <dependency>
  773. <groupId>commons-lang</groupId>
  774. <artifactId>commons-lang</artifactId>
  775. <version>2.6</version>
  776. </dependency>
  777. <dependency>
  778. <groupId>commons-dbcp</groupId>
  779. <artifactId>commons-dbcp</artifactId>
  780. <version>1.4</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>com.ibm.icu</groupId>
  784. <artifactId>icu4j</artifactId>
  785. <!-- animal-sniffer doesn't work with 2.6.1 -->
  786. <version>3.4.4</version>
  787. </dependency>
  788. <dependency>
  789. <groupId>javax.xml.bind</groupId>
  790. <artifactId>jaxb-api</artifactId>
  791. <version>2.3.0</version>
  792. </dependency>
  793. <dependency>
  794. <groupId>com.googlecode.json-simple</groupId>
  795. <artifactId>json-simple</artifactId>
  796. <version>1.1.1</version>
  797. <exclusions>
  798. <exclusion>
  799. <groupId>junit</groupId>
  800. <artifactId>junit</artifactId>
  801. </exclusion>
  802. </exclusions>
  803. </dependency>
  804. <dependency>
  805. <groupId>io.jsonwebtoken</groupId>
  806. <artifactId>jjwt</artifactId>
  807. <version>${jjwt.version}</version>
  808. </dependency>
  809. <dependency>
  810. <groupId>com.fasterxml.jackson.core</groupId>
  811. <artifactId>jackson-core</artifactId>
  812. <version>${jackson.version}</version>
  813. </dependency>
  814. <dependency>
  815. <groupId>com.fasterxml.jackson.core</groupId>
  816. <artifactId>jackson-databind</artifactId>
  817. <version>${jackson.version}</version>
  818. </dependency>
  819. <dependency>
  820. <groupId>com.fasterxml.jackson.core</groupId>
  821. <artifactId>jackson-annotations</artifactId>
  822. <version>${jackson.version}</version>
  823. </dependency>
  824. <dependency>
  825. <groupId>org.yaml</groupId>
  826. <artifactId>snakeyaml</artifactId>
  827. <version>1.15</version>
  828. </dependency>
  829. <dependency>
  830. <groupId>org.mybatis</groupId>
  831. <artifactId>mybatis</artifactId>
  832. <version>3.4.4</version>
  833. </dependency>
  834. <dependency>
  835. <groupId>org.nanohttpd</groupId>
  836. <artifactId>nanohttpd</artifactId>
  837. <version>2.3.0</version>
  838. </dependency>
  839. <dependency>
  840. <groupId>org.picocontainer</groupId>
  841. <artifactId>picocontainer</artifactId>
  842. <version>2.15</version>
  843. </dependency>
  844. <dependency>
  845. <groupId>org.slf4j</groupId>
  846. <artifactId>slf4j-api</artifactId>
  847. <version>${slf4j.version}</version>
  848. </dependency>
  849. <dependency>
  850. <groupId>org.slf4j</groupId>
  851. <artifactId>jul-to-slf4j</artifactId>
  852. <version>${slf4j.version}</version>
  853. </dependency>
  854. <dependency>
  855. <groupId>org.slf4j</groupId>
  856. <artifactId>jcl-over-slf4j</artifactId>
  857. <version>${slf4j.version}</version>
  858. </dependency>
  859. <dependency>
  860. <groupId>org.slf4j</groupId>
  861. <artifactId>log4j-over-slf4j</artifactId>
  862. <version>${slf4j.version}</version>
  863. </dependency>
  864. <dependency>
  865. <groupId>org.apache.logging.log4j</groupId>
  866. <artifactId>log4j-to-slf4j</artifactId>
  867. <version>${log4j.version}</version>
  868. </dependency>
  869. <dependency>
  870. <groupId>org.apache.logging.log4j</groupId>
  871. <artifactId>log4j-api</artifactId>
  872. <version>${log4j.version}</version>
  873. </dependency>
  874. <dependency>
  875. <groupId>org.apache.logging.log4j</groupId>
  876. <artifactId>log4j-core</artifactId>
  877. <version>${log4j.version}</version>
  878. </dependency>
  879. <dependency>
  880. <groupId>ch.qos.logback</groupId>
  881. <artifactId>logback-access</artifactId>
  882. <version>${logback.version}</version>
  883. </dependency>
  884. <dependency>
  885. <groupId>ch.qos.logback</groupId>
  886. <artifactId>logback-classic</artifactId>
  887. <version>${logback.version}</version>
  888. </dependency>
  889. <dependency>
  890. <groupId>ch.qos.logback</groupId>
  891. <artifactId>logback-core</artifactId>
  892. <version>${logback.version}</version>
  893. </dependency>
  894. <dependency>
  895. <groupId>com.h2database</groupId>
  896. <artifactId>h2</artifactId>
  897. <version>${h2.version}</version>
  898. </dependency>
  899. <dependency>
  900. <groupId>com.microsoft.sqlserver</groupId>
  901. <artifactId>mssql-jdbc</artifactId>
  902. <version>6.2.2.jre8</version>
  903. </dependency>
  904. <dependency>
  905. <groupId>mysql</groupId>
  906. <artifactId>mysql-connector-java</artifactId>
  907. <version>5.1.42</version>
  908. </dependency>
  909. <dependency>
  910. <groupId>com.oracle.jdbc</groupId>
  911. <artifactId>ojdbc8</artifactId>
  912. <!--
  913. This version is compatible with Oracle 11g and 12c :
  914. http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#01_02
  915. -->
  916. <version>12.2.0.1.0</version>
  917. </dependency>
  918. <dependency>
  919. <groupId>org.postgresql</groupId>
  920. <artifactId>postgresql</artifactId>
  921. <version>42.2.1</version>
  922. </dependency>
  923. <dependency>
  924. <groupId>org.codehaus.woodstox</groupId>
  925. <artifactId>woodstox-core-lgpl</artifactId>
  926. <version>4.4.0</version>
  927. <exclusions>
  928. <exclusion>
  929. <!-- provided by Java 1.7 -->
  930. <groupId>javax.xml.stream</groupId>
  931. <artifactId>stax-api</artifactId>
  932. </exclusion>
  933. </exclusions>
  934. </dependency>
  935. <dependency>
  936. <groupId>org.codehaus.staxmate</groupId>
  937. <artifactId>staxmate</artifactId>
  938. <version>2.0.1</version>
  939. <exclusions>
  940. <!-- see SONAR-879 -->
  941. <exclusion>
  942. <groupId>org.codehaus.woodstox</groupId>
  943. <artifactId>stax2-api</artifactId>
  944. </exclusion>
  945. <exclusion>
  946. <groupId>stax</groupId>
  947. <artifactId>stax-api</artifactId>
  948. </exclusion>
  949. <exclusion>
  950. <groupId>org.codehaus.woodstox</groupId>
  951. <artifactId>woodstox-core-asl</artifactId>
  952. </exclusion>
  953. </exclusions>
  954. </dependency>
  955. <dependency>
  956. <groupId>org.mockito</groupId>
  957. <artifactId>mockito-core</artifactId>
  958. <version>1.10.19</version>
  959. <exclusions>
  960. <exclusion>
  961. <groupId>org.hamcrest</groupId>
  962. <artifactId>hamcrest-core</artifactId>
  963. </exclusion>
  964. </exclusions>
  965. </dependency>
  966. <dependency>
  967. <groupId>org.assertj</groupId>
  968. <artifactId>assertj-core</artifactId>
  969. <version>3.4.1</version>
  970. </dependency>
  971. <dependency>
  972. <groupId>org.assertj</groupId>
  973. <artifactId>assertj-guava</artifactId>
  974. <version>3.0.0</version>
  975. </dependency>
  976. <dependency>
  977. <groupId>org.codehaus.woodstox</groupId>
  978. <artifactId>stax2-api</artifactId>
  979. <version>3.1.4</version>
  980. <exclusions>
  981. <exclusion>
  982. <groupId>stax</groupId>
  983. <artifactId>stax-api</artifactId>
  984. </exclusion>
  985. </exclusions>
  986. </dependency>
  987. <dependency>
  988. <groupId>javax.servlet</groupId>
  989. <artifactId>javax.servlet-api</artifactId>
  990. <version>3.0.1</version>
  991. </dependency>
  992. <dependency>
  993. <groupId>org.eclipse.jetty</groupId>
  994. <artifactId>jetty-server</artifactId>
  995. <version>${jetty.version}</version>
  996. </dependency>
  997. <dependency>
  998. <groupId>org.hamcrest</groupId>
  999. <artifactId>hamcrest-all</artifactId>
  1000. <version>1.3</version>
  1001. </dependency>
  1002. <dependency>
  1003. <groupId>junit</groupId>
  1004. <artifactId>junit</artifactId>
  1005. <version>4.12</version>
  1006. </dependency>
  1007. <dependency>
  1008. <groupId>com.tngtech.java</groupId>
  1009. <artifactId>junit-dataprovider</artifactId>
  1010. <version>1.9.2</version>
  1011. </dependency>
  1012. <dependency>
  1013. <groupId>org.dbunit</groupId>
  1014. <artifactId>dbunit</artifactId>
  1015. <version>2.4.5</version>
  1016. <exclusions>
  1017. <!-- removing commons lang 2.1 and xerces-->
  1018. <exclusion>
  1019. <groupId>commons-lang</groupId>
  1020. <artifactId>commons-lang</artifactId>
  1021. </exclusion>
  1022. <exclusion>
  1023. <groupId>xerces</groupId>
  1024. <artifactId>xmlParserAPIs</artifactId>
  1025. </exclusion>
  1026. <exclusion>
  1027. <groupId>xerces</groupId>
  1028. <artifactId>xercesImpl</artifactId>
  1029. </exclusion>
  1030. </exclusions>
  1031. </dependency>
  1032. <dependency>
  1033. <groupId>org.eclipse.jetty</groupId>
  1034. <artifactId>test-jetty-servlet</artifactId>
  1035. <version>${jetty.version}</version>
  1036. </dependency>
  1037. <dependency>
  1038. <groupId>org.reflections</groupId>
  1039. <artifactId>reflections</artifactId>
  1040. <version>0.9.9</version>
  1041. </dependency>
  1042. <dependency>
  1043. <groupId>com.google.code.gson</groupId>
  1044. <artifactId>gson</artifactId>
  1045. <version>2.3.1</version>
  1046. </dependency>
  1047. <dependency>
  1048. <groupId>org.sonarsource</groupId>
  1049. <artifactId>sonar-persistit</artifactId>
  1050. <version>3.3.2</version>
  1051. <exclusions>
  1052. <exclusion>
  1053. <groupId>commons-logging</groupId>
  1054. <artifactId>commons-logging</artifactId>
  1055. </exclusion>
  1056. </exclusions>
  1057. </dependency>
  1058. <dependency>
  1059. <groupId>com.github.kevinsawicki</groupId>
  1060. <artifactId>http-request</artifactId>
  1061. <version>5.4.1</version>
  1062. </dependency>
  1063. <dependency>
  1064. <groupId>org.codehaus.sonar.runner</groupId>
  1065. <artifactId>sonar-runner-api</artifactId>
  1066. <version>2.4</version>
  1067. </dependency>
  1068. <dependency>
  1069. <groupId>org.freemarker</groupId>
  1070. <artifactId>freemarker</artifactId>
  1071. <version>2.3.20</version>
  1072. </dependency>
  1073. <dependency>
  1074. <groupId>com.google.protobuf</groupId>
  1075. <artifactId>protobuf-java</artifactId>
  1076. <version>${protobuf.version}</version>
  1077. </dependency>
  1078. <dependency>
  1079. <groupId>net.jpountz.lz4</groupId>
  1080. <artifactId>lz4</artifactId>
  1081. <version>1.3.0</version>
  1082. </dependency>
  1083. <dependency>
  1084. <groupId>org.subethamail</groupId>
  1085. <artifactId>subethasmtp</artifactId>
  1086. <version>3.1.7</version>
  1087. <scope>test</scope>
  1088. </dependency>
  1089. <!-- tomcat -->
  1090. <dependency>
  1091. <groupId>org.apache.tomcat.embed</groupId>
  1092. <artifactId>tomcat-embed-core</artifactId>
  1093. <version>${tomcat.version}</version>
  1094. <exclusions>
  1095. <exclusion>
  1096. <groupId>org.apache.tomcat.embed</groupId>
  1097. <artifactId>tomcat-embed-jasper</artifactId>
  1098. </exclusion>
  1099. <exclusion>
  1100. <groupId>org.eclipse.jdt</groupId>
  1101. <artifactId>ecj</artifactId>
  1102. </exclusion>
  1103. </exclusions>
  1104. </dependency>
  1105. <dependency>
  1106. <groupId>com.squareup.okhttp3</groupId>
  1107. <artifactId>okhttp</artifactId>
  1108. <version>${okhttp.version}</version>
  1109. </dependency>
  1110. <dependency>
  1111. <groupId>com.squareup.okhttp3</groupId>
  1112. <artifactId>mockwebserver</artifactId>
  1113. <version>${okhttp.version}</version>
  1114. </dependency>
  1115. <!-- Using scope=provided to exclude from all transitive dependencies -->
  1116. <dependency>
  1117. <groupId>xml-apis</groupId>
  1118. <artifactId>xml-apis</artifactId>
  1119. <version>1.4.01</version>
  1120. <scope>provided</scope>
  1121. </dependency>
  1122. </dependencies>
  1123. </dependencyManagement>
  1124. <mailingLists>
  1125. <mailingList>
  1126. <name>SonarQube users mailing list</name>
  1127. <subscribe>http://xircles.codehaus.org/projects/sonar/lists</subscribe>
  1128. <unsubscribe>http://xircles.codehaus.org/projects/sonar/lists</unsubscribe>
  1129. <post>user@sonar.codehaus.org</post>
  1130. <archive>http://www.nabble.com/Sonar-f30151.html</archive>
  1131. </mailingList>
  1132. </mailingLists>
  1133. <scm>
  1134. <connection>scm:git:git@github.com:SonarSource/sonarqube.git</connection>
  1135. <developerConnection>scm:git:git@github.com:SonarSource/sonarqube.git</developerConnection>
  1136. <url>https://github.com/SonarSource/sonarqube</url>
  1137. <tag>HEAD</tag>
  1138. </scm>
  1139. <ciManagement>
  1140. <system>travis-ci</system>
  1141. <url>https://travis-ci.org/SonarSource/sonarqube</url>
  1142. </ciManagement>
  1143. <licenses>
  1144. <license>
  1145. <name>GNU LGPL 3</name>
  1146. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  1147. <distribution>repo</distribution>
  1148. </license>
  1149. </licenses>
  1150. <!-- Developers information should not be removed as it's
  1151. required for deployment -->
  1152. <developers>
  1153. <developer>
  1154. <id>bellingard</id>
  1155. <name>Fabrice Bellingard</name>
  1156. <email>fabrice.bellingard@sonarsource.com</email>
  1157. <organization>SonarSource</organization>
  1158. <timezone>+1</timezone>
  1159. </developer>
  1160. <developer>
  1161. <id>dbolkensteyn</id>
  1162. <name>Dinesh Bolkensteyn</name>
  1163. <email>dinesh.bolkensteyn@sonarsource.com</email>
  1164. <organization>SonarSource</organization>
  1165. <timezone>+1</timezone>
  1166. </developer>
  1167. <developer>
  1168. <id>dgageot</id>
  1169. <name>David Gageot</name>
  1170. <organization>SonarSource</organization>
  1171. <timezone>+1</timezone>
  1172. </developer>
  1173. <developer>
  1174. <id>ehartmann</id>
  1175. <name>Eric Hartmann</name>
  1176. <organization>SonarSource</organization>
  1177. <timezone>+1</timezone>
  1178. </developer>
  1179. <developer>
  1180. <id>fmallet</id>
  1181. <name>Freddy Mallet</name>
  1182. <email>freddy.mallet@sonarsource.com</email>
  1183. <organization>SonarSource</organization>
  1184. <timezone>+1</timezone>
  1185. </developer>
  1186. <developer>
  1187. <id>Godin</id>
  1188. <name>Evgeny Mandrikov</name>
  1189. <email>evgeny.mandrikov@sonarsource.com</email>
  1190. <organization>SonarSource</organization>
  1191. <timezone>+3</timezone>
  1192. </developer>
  1193. <developer>
  1194. <id>henryju</id>
  1195. <name>Julien Henry</name>
  1196. <email>julien.henry@sonarsource.com</email>
  1197. <organization>SonarSource</organization>
  1198. <timezone>+1</timezone>
  1199. </developer>
  1200. <developer>
  1201. <id>jblievremont</id>
  1202. <name>Jean-Baptiste Lievremont</name>
  1203. <organization>SonarSource</organization>
  1204. <timezone>+1</timezone>
  1205. </developer>
  1206. <developer>
  1207. <id>julienlancelot</id>
  1208. <name>Julien Lancelot</name>
  1209. <email>julien.lancelot@sonarsource.com</email>
  1210. <organization>SonarSource</organization>
  1211. <timezone>+1</timezone>
  1212. </developer>
  1213. <developer>
  1214. <id>olivier.gaudin</id>
  1215. <name>Olivier Gaudin</name>
  1216. <email>olivier.gaudin@sonarsource.com</email>
  1217. <organization>SonarSource</organization>
  1218. <timezone>+1</timezone>
  1219. </developer>
  1220. <developer>
  1221. <id>simonbrandhof</id>
  1222. <name>Simon Brandhof</name>
  1223. <email>simon.brandhof@sonarsource.com</email>
  1224. <organization>SonarSource</organization>
  1225. <timezone>+1</timezone>
  1226. </developer>
  1227. <developer>
  1228. <id>sns-seb</id>
  1229. <name>Sebastien Lesaint</name>
  1230. <organization>SonarSource</organization>
  1231. <timezone>+1</timezone>
  1232. </developer>
  1233. <developer>
  1234. <id>stas-vilchik</id>
  1235. <name>Stas Vilchik</name>
  1236. <organization>SonarSource</organization>
  1237. <timezone>+1</timezone>
  1238. </developer>
  1239. <developer>
  1240. <id>teryk</id>
  1241. <name>Teryk Bellahsene</name>
  1242. <organization>SonarSource</organization>
  1243. <timezone>+1</timezone>
  1244. </developer>
  1245. </developers>
  1246. <profiles>
  1247. <profile>
  1248. <id>dev</id>
  1249. <properties>
  1250. <skipSanityChecks>true</skipSanityChecks>
  1251. <enforcer.skip>true</enforcer.skip>
  1252. </properties>
  1253. </profile>
  1254. <profile>
  1255. <id>release</id>
  1256. <build>
  1257. <plugins>
  1258. <plugin>
  1259. <groupId>org.apache.maven.plugins</groupId>
  1260. <artifactId>maven-javadoc-plugin</artifactId>
  1261. <executions>
  1262. <execution>
  1263. <id>attach-javadocs</id>
  1264. <goals>
  1265. <goal>jar</goal>
  1266. </goals>
  1267. </execution>
  1268. </executions>
  1269. </plugin>
  1270. </plugins>
  1271. </build>
  1272. </profile>
  1273. <profile>
  1274. <id>protobuf-compile</id>
  1275. <activation>
  1276. <file>
  1277. <exists>src/main/protobuf</exists>
  1278. </file>
  1279. </activation>
  1280. <build>
  1281. <plugins>
  1282. <plugin>
  1283. <groupId>org.xolstice.maven.plugins</groupId>
  1284. <artifactId>protobuf-maven-plugin</artifactId>
  1285. <executions>
  1286. <execution>
  1287. <id>generate-protobuf-java-sources</id>
  1288. <goals>
  1289. <goal>compile</goal>
  1290. </goals>
  1291. <configuration>
  1292. <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}
  1293. </protocArtifact>
  1294. <protoSourceRoot>${project.basedir}/src/main/protobuf</protoSourceRoot>
  1295. <outputDirectory>${project.build.directory}/generated-sources/protobuf</outputDirectory>
  1296. </configuration>
  1297. </execution>
  1298. </executions>
  1299. <dependencies>
  1300. <dependency>
  1301. <groupId>com.google.protobuf</groupId>
  1302. <artifactId>protoc</artifactId>
  1303. <version>${protobuf.version}</version>
  1304. <type>exe</type>
  1305. <classifier>${os.detected.classifier}</classifier>
  1306. </dependency>
  1307. </dependencies>
  1308. </plugin>
  1309. <plugin>
  1310. <groupId>org.codehaus.mojo</groupId>
  1311. <artifactId>build-helper-maven-plugin</artifactId>
  1312. <executions>
  1313. <execution>
  1314. <id>add-protobuf-generated-sources</id>
  1315. <phase>generate-sources</phase>
  1316. <goals>
  1317. <goal>add-source</goal>
  1318. </goals>
  1319. <configuration>
  1320. <sources>
  1321. <source>${project.build.directory}/generated-sources/protobuf</source>
  1322. </sources>
  1323. </configuration>
  1324. </execution>
  1325. </executions>
  1326. </plugin>
  1327. </plugins>
  1328. </build>
  1329. </profile>
  1330. <profile>
  1331. <id>protobuf-test-compile</id>
  1332. <activation>
  1333. <file>
  1334. <exists>src/test/protobuf</exists>
  1335. </file>
  1336. </activation>
  1337. <build>
  1338. <plugins>
  1339. <plugin>
  1340. <groupId>org.xolstice.maven.plugins</groupId>
  1341. <artifactId>protobuf-maven-plugin</artifactId>
  1342. <executions>
  1343. <execution>
  1344. <id>generate-protobuf-java-tests</id>
  1345. <goals>
  1346. <goal>test-compile</goal>
  1347. </goals>
  1348. <configuration>
  1349. <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}
  1350. </protocArtifact>
  1351. <protoTestSourceRoot>${project.basedir}/src/test/protobuf</protoTestSourceRoot>
  1352. <outputDirectory>${project.build.directory}/generated-test-sources/protobuf</outputDirectory>
  1353. </configuration>
  1354. </execution>
  1355. </executions>
  1356. <dependencies>
  1357. <dependency>
  1358. <groupId>com.google.protobuf</groupId>
  1359. <artifactId>protoc</artifactId>
  1360. <version>${protobuf.version}</version>
  1361. <classifier>${os.detected.classifier}</classifier>
  1362. <type>exe</type>
  1363. </dependency>
  1364. </dependencies>
  1365. </plugin>
  1366. <plugin>
  1367. <groupId>org.codehaus.mojo</groupId>
  1368. <artifactId>build-helper-maven-plugin</artifactId>
  1369. <executions>
  1370. <execution>
  1371. <id>add-protobuf-generated-tests</id>
  1372. <phase>generate-test-sources</phase>
  1373. <goals>
  1374. <goal>add-test-source</goal>
  1375. </goals>
  1376. <configuration>
  1377. <sources>
  1378. <source>${project.build.directory}/generated-test-sources/protobuf</source>
  1379. </sources>
  1380. </configuration>
  1381. </execution>
  1382. </executions>
  1383. </plugin>
  1384. </plugins>
  1385. </build>
  1386. </profile>
  1387. <profile>
  1388. <!--
  1389. check if maven dependencies have vulnerabilities listed in CVE
  1390. Standalone command: mvn org.owasp:dependency-check-maven:check
  1391. See http://jeremylong.github.io/DependencyCheck
  1392. -->
  1393. <id>securityCheck</id>
  1394. <build>
  1395. <plugins>
  1396. <plugin>
  1397. <groupId>org.owasp</groupId>
  1398. <artifactId>dependency-check-maven</artifactId>
  1399. <executions>
  1400. <execution>
  1401. <goals>
  1402. <goal>check</goal>
  1403. </goals>
  1404. </execution>
  1405. </executions>
  1406. </plugin>
  1407. </plugins>
  1408. </build>
  1409. </profile>
  1410. <profile>
  1411. <!-- integration tests -->
  1412. <id>tests</id>
  1413. <modules>
  1414. <module>tests</module>
  1415. <module>tests/plugins</module>
  1416. </modules>
  1417. </profile>
  1418. </profiles>
  1419. </project>