Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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