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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <packaging>pom</packaging>
  8. <version>3.5-SNAPSHOT</version>
  9. <name>Sonar</name>
  10. <url>http://www.sonarsource.org/</url>
  11. <description>Open source platform for continuous inspection of code quality</description>
  12. <modules>
  13. <!-- public artifacts to be deployed to central repository -->
  14. <module>sonar-application</module>
  15. <module>sonar-batch</module>
  16. <module>sonar-batch-maven-compat</module>
  17. <module>sonar-channel</module>
  18. <module>sonar-check-api</module>
  19. <module>sonar-colorizer</module>
  20. <module>sonar-core</module>
  21. <module>sonar-deprecated</module>
  22. <module>sonar-duplications</module>
  23. <module>sonar-graph</module>
  24. <module>sonar-java-api</module>
  25. <module>sonar-markdown</module>
  26. <module>sonar-maven-plugin</module>
  27. <module>sonar-maven3-plugin</module>
  28. <module>sonar-plugin-api</module>
  29. <module>sonar-server</module>
  30. <module>sonar-squid</module>
  31. <module>sonar-testing-harness</module>
  32. <module>sonar-ws-client</module>
  33. <module>plugins/sonar-core-plugin</module>
  34. <module>plugins/sonar-dbcleaner-plugin</module>
  35. <module>plugins/sonar-cpd-plugin</module>
  36. <module>plugins/sonar-design-plugin</module>
  37. <module>plugins/sonar-l10n-en-plugin</module>
  38. <module>plugins/sonar-email-notifications-plugin</module>
  39. </modules>
  40. <organization>
  41. <name>SonarSource</name>
  42. <url>http://www.sonarsource.com</url>
  43. </organization>
  44. <inceptionYear>2009</inceptionYear>
  45. <issueManagement>
  46. <system>jira</system>
  47. <url>http://jira.codehaus.org/browse/SONAR</url>
  48. </issueManagement>
  49. <distributionManagement>
  50. <repository>
  51. <id>codehaus-nexus-staging</id>
  52. <name>Codehaus Release Repository</name>
  53. <url>https://nexus.codehaus.org/service/local/staging/deploy/maven2/</url>
  54. </repository>
  55. <snapshotRepository>
  56. <id>sonar-snapshots</id>
  57. <url>${sonar.snapshotRepository.url}</url>
  58. <uniqueVersion>false</uniqueVersion>
  59. </snapshotRepository>
  60. </distributionManagement>
  61. <prerequisites>
  62. <!-- Note that "prerequisites" not inherited, but used by versions-maven-plugin 1.3.1 -->
  63. <maven>${maven.min.version}</maven>
  64. </prerequisites>
  65. <properties>
  66. <sonarJava.version>1.1</sonarJava.version>
  67. <sonarGwt.version>3.3.1</sonarGwt.version>
  68. <h2.version>1.3.167</h2.version>
  69. <jetty.version>6.1.25</jetty.version>
  70. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  71. <maven.min.version>2.2.1</maven.min.version>
  72. <jdk.min.version>1.5</jdk.min.version>
  73. <timestamp>${maven.build.timestamp}</timestamp>
  74. <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
  75. <!-- To configure animal-sniffer to check API compat -->
  76. <animal-sniffer.signature.groupId>org.codehaus.mojo.signature</animal-sniffer.signature.groupId>
  77. <animal-sniffer.signature.artifactId>java15</animal-sniffer.signature.artifactId>
  78. <animal-sniffer.signature.version>1.0</animal-sniffer.signature.version>
  79. <version.animal-sniffer.plugin>1.7</version.animal-sniffer.plugin>
  80. <version.maven-license.plugin>1.9.0</version.maven-license.plugin>
  81. <skipSanityChecks>false</skipSanityChecks>
  82. <!-- default GWT configuration. It's overridden by the profile 'dev' to speed up compilation in dev environments-->
  83. <gwt.permutationSuffix/>
  84. <gwt.extraJvmArgs>-Xmx512m -Xss1024k</gwt.extraJvmArgs>
  85. <sonar.snapshotRepository.url>dav:https://dav.codehaus.org/snapshots.repository/sonar</sonar.snapshotRepository.url>
  86. </properties>
  87. <build>
  88. <extensions>
  89. <extension>
  90. <groupId>org.apache.maven.wagon</groupId>
  91. <artifactId>wagon-webdav</artifactId>
  92. <version>1.0-beta-2</version>
  93. </extension>
  94. </extensions>
  95. <pluginManagement>
  96. <!-- Plugins ordered by shortname (assembly, antrun ...) -->
  97. <plugins>
  98. <plugin>
  99. <groupId>org.codehaus.mojo</groupId>
  100. <artifactId>animal-sniffer-maven-plugin</artifactId>
  101. <version>${version.animal-sniffer.plugin}</version>
  102. <configuration>
  103. <signature>
  104. <groupId>${animal-sniffer.signature.groupId}</groupId>
  105. <artifactId>${animal-sniffer.signature.artifactId}</artifactId>
  106. <version>${animal-sniffer.signature.version}</version>
  107. </signature>
  108. <skip>${skipSanityChecks}</skip>
  109. </configuration>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-antrun-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>2.2.2</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>buildnumber-maven-plugin</artifactId>
  134. <version>1.1</version>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-clean-plugin</artifactId>
  139. <version>2.5</version>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <version>2.5.1</version>
  145. </plugin>
  146. <plugin>
  147. <!-- not thread safe -->
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-dependency-plugin</artifactId>
  150. <version>2.5.1</version>
  151. </plugin>
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-deploy-plugin</artifactId>
  155. <version>2.7</version>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-enforcer-plugin</artifactId>
  160. <version>1.0.1</version>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-failsafe-plugin</artifactId>
  165. <version>2.12</version>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-gpg-plugin</artifactId>
  170. <version>1.4</version>
  171. </plugin>
  172. <plugin>
  173. <!-- not thread safe -->
  174. <groupId>org.codehaus.mojo</groupId>
  175. <artifactId>gwt-maven-plugin</artifactId>
  176. <version>1.2</version>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-install-plugin</artifactId>
  181. <version>2.4</version>
  182. </plugin>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-jar-plugin</artifactId>
  186. <version>2.4</version>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-javadoc-plugin</artifactId>
  191. <version>2.8.1</version>
  192. <configuration>
  193. <author>false</author>
  194. <linksource>true</linksource>
  195. </configuration>
  196. </plugin>
  197. <plugin>
  198. <groupId>org.apache.maven.plugins</groupId>
  199. <artifactId>maven-jxr-plugin</artifactId>
  200. <version>2.3</version>
  201. </plugin>
  202. <plugin>
  203. <groupId>com.mycila.maven-license-plugin</groupId>
  204. <artifactId>maven-license-plugin</artifactId>
  205. <version>${version.maven-license.plugin}</version>
  206. </plugin>
  207. <plugin>
  208. <groupId>org.apache.maven.plugins</groupId>
  209. <artifactId>maven-plugin-plugin</artifactId>
  210. <version>2.9</version>
  211. </plugin>
  212. <plugin>
  213. <groupId>org.apache.maven.plugins</groupId>
  214. <artifactId>maven-release-plugin</artifactId>
  215. <version>2.2.2</version>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-resources-plugin</artifactId>
  220. <version>2.6</version>
  221. </plugin>
  222. <plugin>
  223. <groupId>org.apache.maven.plugins</groupId>
  224. <artifactId>maven-shade-plugin</artifactId>
  225. <version>1.6</version>
  226. </plugin>
  227. <plugin>
  228. <groupId>org.apache.maven.plugins</groupId>
  229. <artifactId>maven-site-plugin</artifactId>
  230. <version>2.0.1</version>
  231. </plugin>
  232. <plugin>
  233. <groupId>org.apache.maven.plugins</groupId>
  234. <artifactId>maven-source-plugin</artifactId>
  235. <version>2.1.2</version>
  236. </plugin>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-surefire-plugin</artifactId>
  240. <version>2.12.4</version>
  241. </plugin>
  242. <plugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-war-plugin</artifactId>
  245. <version>2.1.1</version>
  246. </plugin>
  247. <plugin>
  248. <!-- not thread safe -->
  249. <groupId>org.codehaus.sonar</groupId>
  250. <artifactId>sonar-dev-maven-plugin</artifactId>
  251. <version>1.4</version>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.codehaus.sonar</groupId>
  255. <artifactId>sonar-packaging-maven-plugin</artifactId>
  256. <version>1.1</version>
  257. </plugin>
  258. </plugins>
  259. </pluginManagement>
  260. <plugins>
  261. <plugin>
  262. <groupId>org.codehaus.mojo</groupId>
  263. <artifactId>buildnumber-maven-plugin</artifactId>
  264. <executions>
  265. <execution>
  266. <phase>validate</phase>
  267. <goals>
  268. <goal>create</goal>
  269. </goals>
  270. </execution>
  271. </executions>
  272. <configuration>
  273. <doCheck>false</doCheck>
  274. <doUpdate>false</doUpdate>
  275. <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
  276. <revisionOnScmFailure>0</revisionOnScmFailure>
  277. </configuration>
  278. </plugin>
  279. <plugin>
  280. <groupId>org.apache.maven.plugins</groupId>
  281. <artifactId>maven-compiler-plugin</artifactId>
  282. <configuration>
  283. <source>${jdk.min.version}</source>
  284. <target>${jdk.min.version}</target>
  285. <encoding>${project.build.sourceEncoding}</encoding>
  286. </configuration>
  287. </plugin>
  288. <plugin>
  289. <groupId>org.apache.maven.plugins</groupId>
  290. <artifactId>maven-enforcer-plugin</artifactId>
  291. <executions>
  292. <execution>
  293. <id>enforce-rules</id>
  294. <goals>
  295. <goal>enforce</goal>
  296. </goals>
  297. <configuration>
  298. <rules>
  299. <requirePluginVersions>
  300. <message>Build reproducibility : always define plugin versions</message>
  301. <banLatest>true</banLatest>
  302. <banRelease>true</banRelease>
  303. <phases>clean,deploy</phases>
  304. </requirePluginVersions>
  305. <requireReleaseDeps>
  306. <message>No SNAPSHOT versions allowed for dependencies</message>
  307. <onlyWhenRelease>true</onlyWhenRelease>
  308. </requireReleaseDeps>
  309. <requireJavaVersion>
  310. <message>To build this project JDK ${jdk.min.version} (or upper) is required. Please install it.
  311. </message>
  312. <version>${jdk.min.version}</version>
  313. </requireJavaVersion>
  314. <requireMavenVersion>
  315. <message>To build this project Maven ${maven.min.version} (or upper) is required. Please install it.
  316. </message>
  317. <version>${maven.min.version}</version>
  318. </requireMavenVersion>
  319. <bannedDependencies>
  320. <!-- See SONAR-2512 -->
  321. <message>commons-beanutils:commons-beanutils should be used instead</message>
  322. <excludes>
  323. <exclude>commons-beanutils:commons-beanutils-core</exclude>
  324. </excludes>
  325. <searchTransitive>true</searchTransitive>
  326. </bannedDependencies>
  327. <bannedDependencies>
  328. <!-- See SONAR-2455 -->
  329. <message>org.codehaus.plexus:plexus-classworlds should be used instead</message>
  330. <excludes>
  331. <exclude>classworlds:classworlds</exclude>
  332. </excludes>
  333. <searchTransitive>true</searchTransitive>
  334. </bannedDependencies>
  335. </rules>
  336. </configuration>
  337. </execution>
  338. <execution>
  339. <!-- TODO Merge with execution enforce-rules as soon as we will remove exclusions for this rule - see SONAR-2938 -->
  340. <id>enforce-no-repositories</id>
  341. <goals>
  342. <goal>enforce</goal>
  343. </goals>
  344. <configuration>
  345. <rules>
  346. <requireNoRepositories>
  347. <!-- Also see SONAR-2849 -->
  348. <message>The rules for repo1.maven.org are that pom.xml files should not include repository
  349. definitions.
  350. </message>
  351. </requireNoRepositories>
  352. </rules>
  353. </configuration>
  354. </execution>
  355. </executions>
  356. </plugin>
  357. <plugin>
  358. <groupId>org.apache.maven.plugins</groupId>
  359. <artifactId>maven-jar-plugin</artifactId>
  360. <configuration>
  361. <archive>
  362. <manifestEntries>
  363. <Version>${project.version}</Version>
  364. <!-- ${buildNumber} is the Git revision. It's generated by the buildnumber-maven-plugin -->
  365. <Implementation-Build>${buildNumber}</Implementation-Build>
  366. <Build-Time>${timestamp}</Build-Time>
  367. </manifestEntries>
  368. </archive>
  369. </configuration>
  370. </plugin>
  371. <plugin>
  372. <groupId>org.codehaus.sonar</groupId>
  373. <artifactId>sonar-packaging-maven-plugin</artifactId>
  374. <extensions>true</extensions>
  375. <configuration>
  376. <archive>
  377. <manifestEntries>
  378. <!-- ${buildNumber} is the Git revision. It's generated by the buildnumber-maven-plugin -->
  379. <Implementation-Build>${buildNumber}</Implementation-Build>
  380. <Build-Time>${timestamp}</Build-Time>
  381. </manifestEntries>
  382. </archive>
  383. </configuration>
  384. </plugin>
  385. <plugin>
  386. <groupId>org.apache.maven.plugins</groupId>
  387. <artifactId>maven-jxr-plugin</artifactId>
  388. <configuration>
  389. <aggregate>true</aggregate>
  390. <linkJavadoc>true</linkJavadoc>
  391. <javadocDir>${project.reporting.outputDirectory}/${project.version}/apidocs</javadocDir>
  392. </configuration>
  393. </plugin>
  394. <!-- check copyright/license headers -->
  395. <plugin>
  396. <inherited>false</inherited>
  397. <groupId>com.mycila.maven-license-plugin</groupId>
  398. <artifactId>maven-license-plugin</artifactId>
  399. <configuration>
  400. <header>${project.basedir}/copyright.txt</header>
  401. <failIfMissing>true</failIfMissing>
  402. <strictCheck>true</strictCheck>
  403. <aggregate>true</aggregate>
  404. <includes>
  405. <include>**/sonar-*/src/main/java/**</include>
  406. <include>**/sonar-*/src/test/java/**</include>
  407. </includes>
  408. <excludes>
  409. <exclude>tests/**</exclude>
  410. </excludes>
  411. <mapping>
  412. <java>SLASHSTAR_STYLE</java>
  413. </mapping>
  414. <skip>${skipSanityChecks}</skip>
  415. </configuration>
  416. <executions>
  417. <execution>
  418. <id>enforce-license-headers</id>
  419. <phase>validate</phase>
  420. <goals>
  421. <goal>check</goal>
  422. </goals>
  423. </execution>
  424. </executions>
  425. </plugin>
  426. <plugin>
  427. <groupId>org.codehaus.mojo</groupId>
  428. <artifactId>animal-sniffer-maven-plugin</artifactId>
  429. <executions>
  430. <execution>
  431. <id>enforce-java-api-compatibility</id>
  432. <phase>verify</phase>
  433. <goals>
  434. <goal>check</goal>
  435. </goals>
  436. </execution>
  437. </executions>
  438. </plugin>
  439. <plugin>
  440. <groupId>org.apache.maven.plugins</groupId>
  441. <artifactId>maven-release-plugin</artifactId>
  442. <configuration>
  443. <autoVersionSubmodules>true</autoVersionSubmodules>
  444. <localCheckout>true</localCheckout>
  445. <pushChanges>false</pushChanges>
  446. <mavenExecutorId>forked-path</mavenExecutorId>
  447. <preparationGoals>clean install</preparationGoals>
  448. </configuration>
  449. </plugin>
  450. <plugin>
  451. <groupId>org.apache.maven.plugins</groupId>
  452. <artifactId>maven-source-plugin</artifactId>
  453. <executions>
  454. <execution>
  455. <id>attach-sources</id>
  456. <phase>verify</phase>
  457. <goals>
  458. <goal>jar-no-fork</goal>
  459. </goals>
  460. </execution>
  461. </executions>
  462. </plugin>
  463. <plugin>
  464. <groupId>org.apache.maven.plugins</groupId>
  465. <artifactId>maven-surefire-plugin</artifactId>
  466. <configuration>
  467. <runOrder>random</runOrder>
  468. <argLine>-Xmx256m -Djava.awt.headless=true</argLine>
  469. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  470. <systemPropertyVariables>
  471. <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
  472. </systemPropertyVariables>
  473. </configuration>
  474. </plugin>
  475. <plugin>
  476. <!-- this plugin is used to list the licenses of all the dependencies :
  477. mvn org.codehaus.mojo:license-maven-plugin:aggregate-add-third-party
  478. -->
  479. <groupId>org.codehaus.mojo</groupId>
  480. <artifactId>license-maven-plugin</artifactId>
  481. <version>1.0-beta-3</version>
  482. <configuration>
  483. <groupByLicense>true</groupByLicense>
  484. <licenseMerges>
  485. <licenseMerge>The Apache Software License, Version 2.0|Apache License 2.0|Apache 2|Apache License Version
  486. 2|Apache License Version 2.0|Apache Public License 2.0|Apache Software License - Version 2.0|Apache
  487. Software Licenses
  488. </licenseMerge>
  489. <licenseMerge>GNU Lesser General Public License, Version 2.1|GNU Lesser General Public License Version
  490. 2.1|GNU Lesser General Public License (LGPL), Version 2.1
  491. </licenseMerge>
  492. <licenseMerge>BSD|BSD License|The BSD License</licenseMerge>
  493. <licenseMerge>Common Public License, Version 1.0|Common Public License - v 1.0|Common Public License Version
  494. 1.0
  495. </licenseMerge>
  496. <licenseMerge>Eclipse Public License, Version 1.0|Eclipse Public License - Version 1.0</licenseMerge>
  497. <licenseMerge>Common Development and Distribution License, Version 1.0|COMMON DEVELOPMENT AND DISTRIBUTION
  498. LICENSE (CDDL) Version 1.0|Common Development and Distribution License (CDDL) v1.0
  499. </licenseMerge>
  500. <licenseMerge>MIT License|The MIT License</licenseMerge>
  501. </licenseMerges>
  502. </configuration>
  503. </plugin>
  504. </plugins>
  505. </build>
  506. <dependencyManagement>
  507. <dependencies>
  508. <!-- sonar modules -->
  509. <dependency>
  510. <groupId>org.codehaus.sonar</groupId>
  511. <artifactId>sonar-channel</artifactId>
  512. <version>${project.version}</version>
  513. </dependency>
  514. <dependency>
  515. <groupId>org.codehaus.sonar</groupId>
  516. <artifactId>sonar-markdown</artifactId>
  517. <version>${project.version}</version>
  518. </dependency>
  519. <dependency>
  520. <groupId>org.codehaus.sonar</groupId>
  521. <artifactId>sonar-check-api</artifactId>
  522. <version>${project.version}</version>
  523. </dependency>
  524. <dependency>
  525. <groupId>org.codehaus.sonar</groupId>
  526. <artifactId>sonar-colorizer</artifactId>
  527. <version>${project.version}</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>org.codehaus.sonar</groupId>
  531. <artifactId>sonar-core</artifactId>
  532. <version>${project.version}</version>
  533. </dependency>
  534. <dependency>
  535. <groupId>org.codehaus.sonar</groupId>
  536. <artifactId>sonar-deprecated</artifactId>
  537. <version>${project.version}</version>
  538. </dependency>
  539. <dependency>
  540. <groupId>org.codehaus.sonar</groupId>
  541. <artifactId>sonar-duplications</artifactId>
  542. <version>${project.version}</version>
  543. </dependency>
  544. <dependency>
  545. <groupId>org.codehaus.sonar</groupId>
  546. <artifactId>sonar-graph</artifactId>
  547. <version>${project.version}</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>org.codehaus.sonar</groupId>
  551. <artifactId>sonar-java-api</artifactId>
  552. <version>${project.version}</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>org.codehaus.sonar</groupId>
  556. <artifactId>sonar-plugin-api</artifactId>
  557. <version>${project.version}</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.codehaus.sonar</groupId>
  561. <artifactId>sonar-update-center-common</artifactId>
  562. <version>1.4</version>
  563. </dependency>
  564. <dependency>
  565. <groupId>org.codehaus.sonar</groupId>
  566. <artifactId>sonar-server</artifactId>
  567. <version>${project.version}</version>
  568. </dependency>
  569. <dependency>
  570. <groupId>org.codehaus.sonar</groupId>
  571. <artifactId>sonar-squid</artifactId>
  572. <version>${project.version}</version>
  573. </dependency>
  574. <dependency>
  575. <groupId>org.codehaus.sonar</groupId>
  576. <artifactId>sonar-testing-harness</artifactId>
  577. <version>${project.version}</version>
  578. </dependency>
  579. <dependency>
  580. <groupId>org.codehaus.sonar</groupId>
  581. <artifactId>sonar-ws-client</artifactId>
  582. <version>${project.version}</version>
  583. </dependency>
  584. <dependency>
  585. <groupId>org.codehaus.sonar-plugins.java</groupId>
  586. <artifactId>sonar-java-plugin</artifactId>
  587. <version>${sonarJava.version}</version>
  588. </dependency>
  589. <dependency>
  590. <groupId>org.codehaus.sonar-plugins.java</groupId>
  591. <artifactId>sonar-squid-java-plugin</artifactId>
  592. <version>${sonarJava.version}</version>
  593. </dependency>
  594. <dependency>
  595. <groupId>org.codehaus.sonar-plugins.java</groupId>
  596. <artifactId>sonar-pmd-plugin</artifactId>
  597. <version>${sonarJava.version}</version>
  598. </dependency>
  599. <dependency>
  600. <groupId>org.codehaus.sonar-plugins.java</groupId>
  601. <artifactId>sonar-checkstyle-plugin</artifactId>
  602. <version>${sonarJava.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>org.codehaus.sonar-plugins.java</groupId>
  606. <artifactId>sonar-findbugs-plugin</artifactId>
  607. <version>${sonarJava.version}</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.codehaus.sonar-plugins.java</groupId>
  611. <artifactId>sonar-surefire-plugin</artifactId>
  612. <version>${sonarJava.version}</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.codehaus.sonar-plugins.java</groupId>
  616. <artifactId>sonar-cobertura-plugin</artifactId>
  617. <version>${sonarJava.version}</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.codehaus.sonar-plugins.java</groupId>
  621. <artifactId>sonar-jacoco-plugin</artifactId>
  622. <version>${sonarJava.version}</version>
  623. </dependency>
  624. <dependency>
  625. <groupId>asm</groupId>
  626. <artifactId>asm-all</artifactId>
  627. <version>3.2</version>
  628. </dependency>
  629. <dependency>
  630. <groupId>org.codehaus.plexus</groupId>
  631. <artifactId>plexus-classworlds</artifactId>
  632. <version>2.2.3</version>
  633. </dependency>
  634. <dependency>
  635. <groupId>commons-collections</groupId>
  636. <artifactId>commons-collections</artifactId>
  637. <version>3.2.1</version>
  638. </dependency>
  639. <dependency>
  640. <groupId>com.google.guava</groupId>
  641. <artifactId>guava</artifactId>
  642. <version>10.0.1</version>
  643. </dependency>
  644. <dependency>
  645. <groupId>commons-io</groupId>
  646. <artifactId>commons-io</artifactId>
  647. <version>2.0.1</version>
  648. </dependency>
  649. <dependency>
  650. <groupId>commons-codec</groupId>
  651. <artifactId>commons-codec</artifactId>
  652. <version>1.4</version>
  653. </dependency>
  654. <dependency>
  655. <groupId>commons-lang</groupId>
  656. <artifactId>commons-lang</artifactId>
  657. <version>2.6</version>
  658. </dependency>
  659. <dependency>
  660. <groupId>commons-math</groupId>
  661. <artifactId>commons-math</artifactId>
  662. <version>1.2</version>
  663. </dependency>
  664. <dependency>
  665. <groupId>commons-dbcp</groupId>
  666. <artifactId>commons-dbcp</artifactId>
  667. <!-- do not upgrade to version 1.4, not compatible with Java5 -->
  668. <version>1.3</version>
  669. </dependency>
  670. <dependency>
  671. <!-- See SONAR-2512 -->
  672. <groupId>commons-beanutils</groupId>
  673. <artifactId>commons-beanutils</artifactId>
  674. <version>1.8.3</version>
  675. </dependency>
  676. <dependency>
  677. <groupId>commons-configuration</groupId>
  678. <artifactId>commons-configuration</artifactId>
  679. <version>1.6</version>
  680. <exclusions>
  681. <exclusion>
  682. <groupId>commons-logging</groupId>
  683. <artifactId>commons-logging</artifactId>
  684. </exclusion>
  685. <exclusion>
  686. <!-- See SONAR-2512 -->
  687. <groupId>commons-beanutils</groupId>
  688. <artifactId>commons-beanutils-core</artifactId>
  689. </exclusion>
  690. </exclusions>
  691. </dependency>
  692. <dependency>
  693. <groupId>com.google.gwt</groupId>
  694. <artifactId>gwt-user</artifactId>
  695. <version>2.0.4</version>
  696. </dependency>
  697. <dependency>
  698. <groupId>com.google.gwt</groupId>
  699. <artifactId>gwt-incubator</artifactId>
  700. <version>2.0.1</version>
  701. </dependency>
  702. <dependency>
  703. <groupId>com.ibm.icu</groupId>
  704. <artifactId>icu4j</artifactId>
  705. <!-- animal-sniffer doesn't work with 2.6.1 -->
  706. <version>3.4.4</version>
  707. </dependency>
  708. <dependency>
  709. <groupId>jfree</groupId>
  710. <artifactId>jfreechart</artifactId>
  711. <version>1.0.9</version>
  712. </dependency>
  713. <dependency>
  714. <groupId>com.googlecode.json-simple</groupId>
  715. <artifactId>json-simple</artifactId>
  716. <version>1.1.1</version>
  717. <exclusions>
  718. <exclusion>
  719. <groupId>junit</groupId>
  720. <artifactId>junit</artifactId>
  721. </exclusion>
  722. </exclusions>
  723. </dependency>
  724. <dependency>
  725. <groupId>org.hibernate</groupId>
  726. <artifactId>hibernate-annotations</artifactId>
  727. <version>3.4.0.GA</version>
  728. </dependency>
  729. <dependency>
  730. <groupId>org.hibernate</groupId>
  731. <artifactId>hibernate-commons-annotations</artifactId>
  732. <version>3.1.0.GA</version>
  733. </dependency>
  734. <dependency>
  735. <groupId>org.hibernate</groupId>
  736. <artifactId>hibernate-core</artifactId>
  737. <version>3.3.2.GA</version>
  738. <exclusions>
  739. <exclusion>
  740. <groupId>javax.transaction</groupId>
  741. <artifactId>jta</artifactId>
  742. </exclusion>
  743. </exclusions>
  744. </dependency>
  745. <dependency>
  746. <groupId>org.hibernate</groupId>
  747. <artifactId>hibernate-entitymanager</artifactId>
  748. <version>3.4.0.GA</version>
  749. <exclusions>
  750. <exclusion>
  751. <groupId>javax.transaction</groupId>
  752. <artifactId>jta</artifactId>
  753. </exclusion>
  754. </exclusions>
  755. </dependency>
  756. <dependency>
  757. <groupId>org.mybatis</groupId>
  758. <artifactId>mybatis</artifactId>
  759. <version>3.1.1</version>
  760. </dependency>
  761. <dependency>
  762. <groupId>org.picocontainer</groupId>
  763. <artifactId>picocontainer</artifactId>
  764. <version>2.14.1</version>
  765. </dependency>
  766. <dependency>
  767. <groupId>org.slf4j</groupId>
  768. <artifactId>slf4j-api</artifactId>
  769. <version>1.6.2</version>
  770. </dependency>
  771. <dependency>
  772. <groupId>org.slf4j</groupId>
  773. <artifactId>jcl-over-slf4j</artifactId>
  774. <version>1.6.2</version>
  775. </dependency>
  776. <dependency>
  777. <groupId>org.slf4j</groupId>
  778. <artifactId>log4j-over-slf4j</artifactId>
  779. <version>1.6.2</version>
  780. </dependency>
  781. <dependency>
  782. <groupId>ch.qos.logback</groupId>
  783. <artifactId>logback-classic</artifactId>
  784. <version>0.9.30</version>
  785. </dependency>
  786. <dependency>
  787. <groupId>ch.qos.logback</groupId>
  788. <artifactId>logback-core</artifactId>
  789. <version>0.9.30</version>
  790. </dependency>
  791. <dependency>
  792. <groupId>com.h2database</groupId>
  793. <artifactId>h2</artifactId>
  794. <version>${h2.version}</version>
  795. </dependency>
  796. <dependency>
  797. <groupId>org.jruby.rack</groupId>
  798. <artifactId>jruby-rack</artifactId>
  799. <version>1.1.10</version>
  800. </dependency>
  801. <dependency>
  802. <groupId>mysql</groupId>
  803. <artifactId>mysql-connector-java</artifactId>
  804. <version>5.1.18</version>
  805. </dependency>
  806. <dependency>
  807. <groupId>postgresql</groupId>
  808. <artifactId>postgresql</artifactId>
  809. <!-- do not upgrade to version 9.1-901.jdbc4, not compatible with Java 5 -->
  810. <version>9.1-901.jdbc3</version>
  811. </dependency>
  812. <dependency>
  813. <groupId>net.sourceforge.jtds</groupId>
  814. <artifactId>jtds</artifactId>
  815. <version>1.2.4</version>
  816. </dependency>
  817. <dependency>
  818. <groupId>org.codehaus.woodstox</groupId>
  819. <artifactId>woodstox-core-lgpl</artifactId>
  820. <version>4.0.4</version>
  821. </dependency>
  822. <dependency>
  823. <groupId>org.codehaus.staxmate</groupId>
  824. <artifactId>staxmate</artifactId>
  825. <version>2.0.0</version>
  826. <exclusions>
  827. <!-- see SONAR-879 -->
  828. <exclusion>
  829. <groupId>org.codehaus.woodstox</groupId>
  830. <artifactId>stax2-api</artifactId>
  831. </exclusion>
  832. <exclusion>
  833. <groupId>org.codehaus.woodstox</groupId>
  834. <artifactId>woodstox-core-asl</artifactId>
  835. </exclusion>
  836. </exclusions>
  837. </dependency>
  838. <dependency>
  839. <groupId>org.mockito</groupId>
  840. <artifactId>mockito-all</artifactId>
  841. <version>1.9.0</version>
  842. </dependency>
  843. <dependency>
  844. <groupId>org.easytesting</groupId>
  845. <artifactId>fest-assert</artifactId>
  846. <version>1.4</version>
  847. </dependency>
  848. <dependency>
  849. <groupId>org.hamcrest</groupId>
  850. <artifactId>hamcrest-all</artifactId>
  851. <version>1.1</version>
  852. </dependency>
  853. <dependency>
  854. <groupId>com.thoughtworks.xstream</groupId>
  855. <artifactId>xstream</artifactId>
  856. <version>1.3.1</version>
  857. <exclusions>
  858. <exclusion>
  859. <groupId>xpp3</groupId>
  860. <artifactId>xpp3_min</artifactId>
  861. </exclusion>
  862. </exclusions>
  863. </dependency>
  864. <dependency>
  865. <groupId>xpp3</groupId>
  866. <artifactId>xpp3</artifactId>
  867. <version>1.1.3.3</version>
  868. </dependency>
  869. <dependency>
  870. <groupId>org.apache.maven</groupId>
  871. <artifactId>maven-core</artifactId>
  872. <version>2.0.7</version>
  873. <exclusions>
  874. <exclusion>
  875. <!-- See SONAR-2455 -->
  876. <groupId>classworlds</groupId>
  877. <artifactId>classworlds</artifactId>
  878. </exclusion>
  879. </exclusions>
  880. </dependency>
  881. <dependency>
  882. <groupId>org.apache.maven</groupId>
  883. <artifactId>maven-plugin-api</artifactId>
  884. <version>2.0.7</version>
  885. </dependency>
  886. <dependency>
  887. <groupId>org.apache.maven</groupId>
  888. <artifactId>maven-artifact</artifactId>
  889. <version>2.0.7</version>
  890. </dependency>
  891. <dependency>
  892. <groupId>org.apache.maven</groupId>
  893. <artifactId>maven-project</artifactId>
  894. <version>2.0.7</version>
  895. <exclusions>
  896. <exclusion>
  897. <!-- See SONAR-2455 -->
  898. <groupId>classworlds</groupId>
  899. <artifactId>classworlds</artifactId>
  900. </exclusion>
  901. </exclusions>
  902. </dependency>
  903. <dependency>
  904. <groupId>org.apache.maven.shared</groupId>
  905. <artifactId>maven-dependency-tree</artifactId>
  906. <version>1.2</version>
  907. <exclusions>
  908. <exclusion>
  909. <!-- See SONAR-2455 -->
  910. <groupId>classworlds</groupId>
  911. <artifactId>classworlds</artifactId>
  912. </exclusion>
  913. </exclusions>
  914. </dependency>
  915. <dependency>
  916. <groupId>org.apache.maven.shared</groupId>
  917. <artifactId>maven-common-artifact-filters</artifactId>
  918. <version>1.2</version>
  919. </dependency>
  920. <dependency>
  921. <groupId>org.jruby</groupId>
  922. <artifactId>jruby-complete</artifactId>
  923. <version>1.6.7.2</version>
  924. </dependency>
  925. <dependency>
  926. <groupId>geronimo-spec</groupId>
  927. <artifactId>geronimo-spec-jta</artifactId>
  928. <version>1.0-M1</version>
  929. </dependency>
  930. <dependency>
  931. <groupId>org.codehaus.woodstox</groupId>
  932. <artifactId>stax2-api</artifactId>
  933. <version>3.0.1</version>
  934. </dependency>
  935. <dependency>
  936. <groupId>javax.servlet</groupId>
  937. <artifactId>servlet-api</artifactId>
  938. <version>2.5</version>
  939. </dependency>
  940. <dependency>
  941. <groupId>org.mortbay.jetty</groupId>
  942. <artifactId>jetty-plus</artifactId>
  943. <version>${jetty.version}</version>
  944. </dependency>
  945. <dependency>
  946. <groupId>org.mortbay.jetty</groupId>
  947. <artifactId>jetty-naming</artifactId>
  948. <version>${jetty.version}</version>
  949. <exclusions>
  950. <exclusion>
  951. <groupId>javax.mail</groupId>
  952. <artifactId>mail</artifactId>
  953. </exclusion>
  954. </exclusions>
  955. </dependency>
  956. <dependency>
  957. <groupId>org.mortbay.jetty</groupId>
  958. <artifactId>jetty</artifactId>
  959. <version>${jetty.version}</version>
  960. </dependency>
  961. <dependency>
  962. <groupId>org.mortbay.jetty</groupId>
  963. <artifactId>jetty-util</artifactId>
  964. <version>${jetty.version}</version>
  965. </dependency>
  966. <dependency>
  967. <groupId>org.jdom</groupId>
  968. <artifactId>jdom</artifactId>
  969. <version>1.1</version>
  970. </dependency>
  971. <dependency>
  972. <groupId>junit</groupId>
  973. <artifactId>junit</artifactId>
  974. <version>4.10</version>
  975. </dependency>
  976. <dependency>
  977. <groupId>xerces</groupId>
  978. <artifactId>xercesImpl</artifactId>
  979. <version>2.8.1</version>
  980. </dependency>
  981. <dependency>
  982. <groupId>xalan</groupId>
  983. <artifactId>xalan</artifactId>
  984. <version>2.7.1</version>
  985. </dependency>
  986. <dependency>
  987. <groupId>xmlunit</groupId>
  988. <artifactId>xmlunit</artifactId>
  989. <version>1.2</version>
  990. </dependency>
  991. <dependency>
  992. <groupId>org.dbunit</groupId>
  993. <artifactId>dbunit</artifactId>
  994. <version>2.4.5</version>
  995. <exclusions>
  996. <!-- removing commons lang 2.1 and xerces-->
  997. <exclusion>
  998. <groupId>commons-lang</groupId>
  999. <artifactId>commons-lang</artifactId>
  1000. </exclusion>
  1001. <exclusion>
  1002. <groupId>xerces</groupId>
  1003. <artifactId>xmlParserAPIs</artifactId>
  1004. </exclusion>
  1005. <exclusion>
  1006. <groupId>xerces</groupId>
  1007. <artifactId>xercesImpl</artifactId>
  1008. </exclusion>
  1009. </exclusions>
  1010. </dependency>
  1011. <dependency>
  1012. <groupId>org.mortbay.jetty</groupId>
  1013. <artifactId>jetty-servlet-tester</artifactId>
  1014. <version>${jetty.version}</version>
  1015. </dependency>
  1016. <dependency>
  1017. <groupId>org.reflections</groupId>
  1018. <artifactId>reflections</artifactId>
  1019. <version>0.9.7.RC1</version>
  1020. </dependency>
  1021. <dependency>
  1022. <groupId>com.google.code.gson</groupId>
  1023. <artifactId>gson</artifactId>
  1024. <version>2.2.2</version>
  1025. </dependency>
  1026. </dependencies>
  1027. </dependencyManagement>
  1028. <mailingLists>
  1029. <mailingList>
  1030. <name>Sonar users mailing list</name>
  1031. <subscribe>http://xircles.codehaus.org/projects/sonar/lists</subscribe>
  1032. <unsubscribe>http://xircles.codehaus.org/projects/sonar/lists</unsubscribe>
  1033. <post>user@sonar.codehaus.org</post>
  1034. <archive>http://www.nabble.com/Sonar-f30151.html</archive>
  1035. </mailingList>
  1036. </mailingLists>
  1037. <scm>
  1038. <connection>scm:git:git@github.com:SonarSource/sonar.git</connection>
  1039. <developerConnection>scm:git:git@github.com:SonarSource/sonar.git</developerConnection>
  1040. <url>https://github.com/SonarSource/sonar</url>
  1041. </scm>
  1042. <ciManagement>
  1043. <system>bamboo</system>
  1044. <url>http://bamboo.ci.codehaus.org/browse/SONAR-DEF</url>
  1045. </ciManagement>
  1046. <licenses>
  1047. <license>
  1048. <name>GNU LGPL 3</name>
  1049. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  1050. <distribution>repo</distribution>
  1051. </license>
  1052. </licenses>
  1053. <developers>
  1054. <developer>
  1055. <id>dinesh.bolkensteyn</id>
  1056. <name>Dinesh Bolkensteyn</name>
  1057. <email>dinesh.bolkensteyn@sonarsource.com</email>
  1058. <organization>SonarSource</organization>
  1059. <timezone>+1</timezone>
  1060. </developer>
  1061. <developer>
  1062. <id>evgeny.mandrikov</id>
  1063. <name>Evgeny Mandrikov</name>
  1064. <email>evgeny.mandrikov@sonarsource.com</email>
  1065. <organization>SonarSource</organization>
  1066. <timezone>+3</timezone>
  1067. </developer>
  1068. <developer>
  1069. <id>fabrice.bellingard</id>
  1070. <name>Fabrice Bellingard</name>
  1071. <email>fabrice.bellingard@sonarsource.com</email>
  1072. <organization>SonarSource</organization>
  1073. <timezone>+1</timezone>
  1074. </developer>
  1075. <developer>
  1076. <id>freddy.mallet</id>
  1077. <name>Freddy Mallet</name>
  1078. <email>freddy.mallet@sonarsource.com</email>
  1079. <organization>SonarSource</organization>
  1080. <timezone>+1</timezone>
  1081. </developer>
  1082. <developer>
  1083. <id>olivier.gaudin</id>
  1084. <name>Olivier Gaudin</name>
  1085. <email>olivier.gaudin@sonarsource.com</email>
  1086. <organization>SonarSource</organization>
  1087. <timezone>+1</timezone>
  1088. </developer>
  1089. <developer>
  1090. <id>simon.brandhof</id>
  1091. <name>Simon Brandhof</name>
  1092. <email>simon.brandhof@sonarsource.com</email>
  1093. <organization>SonarSource</organization>
  1094. <timezone>+1</timezone>
  1095. </developer>
  1096. </developers>
  1097. <profiles>
  1098. <profile>
  1099. <id>dev</id>
  1100. <properties>
  1101. <skipSanityChecks>true</skipSanityChecks>
  1102. <!-- used in sonar-design-plugin -->
  1103. <gwt.permutationSuffix>Dev</gwt.permutationSuffix>
  1104. <gwt.extraJvmArgs>-Xmx512m -Xss1024k -Dgwt.draftCompile=true</gwt.extraJvmArgs>
  1105. </properties>
  1106. </profile>
  1107. <profile>
  1108. <id>release</id>
  1109. <build>
  1110. <plugins>
  1111. <plugin>
  1112. <groupId>org.apache.maven.plugins</groupId>
  1113. <artifactId>maven-javadoc-plugin</artifactId>
  1114. <executions>
  1115. <execution>
  1116. <id>attach-javadocs</id>
  1117. <goals>
  1118. <goal>jar</goal>
  1119. </goals>
  1120. </execution>
  1121. </executions>
  1122. </plugin>
  1123. <plugin>
  1124. <groupId>org.apache.maven.plugins</groupId>
  1125. <artifactId>maven-gpg-plugin</artifactId>
  1126. <executions>
  1127. <execution>
  1128. <id>sign-artifacts</id>
  1129. <phase>verify</phase>
  1130. <goals>
  1131. <goal>sign</goal>
  1132. </goals>
  1133. </execution>
  1134. </executions>
  1135. </plugin>
  1136. </plugins>
  1137. </build>
  1138. </profile>
  1139. <profile>
  1140. <id>javadoc</id>
  1141. <build>
  1142. <plugins>
  1143. <plugin>
  1144. <groupId>org.apache.maven.plugins</groupId>
  1145. <artifactId>maven-javadoc-plugin</artifactId>
  1146. <configuration>
  1147. <excludePackageNames>
  1148. net.*:org.sonar.application:org.sonar.server:org.sonar.graph:org.sonar.batch:org.sonar.channel:org.sonar.java:org.sonar.maven*:org.sonar.plugins.*:org.sonar.colorizer:org.sonar.squid:org.sonar.core:org.sonar.jpa:org.sonar.duplications:org.sonar.markdown:com.*
  1149. </excludePackageNames>
  1150. <author>false</author>
  1151. <linksource>true</linksource>
  1152. <reportOutputDirectory>${project.reporting.outputDirectory}/${project.version}/apidocs
  1153. </reportOutputDirectory>
  1154. </configuration>
  1155. </plugin>
  1156. </plugins>
  1157. </build>
  1158. </profile>
  1159. <profile>
  1160. <id>m2e</id>
  1161. <activation>
  1162. <!-- This profile is active only when used from Eclipse m2e and is used only to store settings. -->
  1163. <property>
  1164. <name>m2e.version</name>
  1165. </property>
  1166. </activation>
  1167. <build>
  1168. <pluginManagement>
  1169. <plugins>
  1170. <plugin>
  1171. <groupId>org.eclipse.m2e</groupId>
  1172. <artifactId>lifecycle-mapping</artifactId>
  1173. <version>1.0.0</version>
  1174. <configuration>
  1175. <lifecycleMappingMetadata>
  1176. <pluginExecutions>
  1177. <pluginExecution>
  1178. <pluginExecutionFilter>
  1179. <groupId>org.codehaus.sonar</groupId>
  1180. <artifactId>sonar-packaging-maven-plugin</artifactId>
  1181. <versionRange>[1.0,)</versionRange>
  1182. <goals>
  1183. <goal>check-dependencies</goal>
  1184. </goals>
  1185. </pluginExecutionFilter>
  1186. <action>
  1187. <ignore/>
  1188. </action>
  1189. </pluginExecution>
  1190. <pluginExecution>
  1191. <pluginExecutionFilter>
  1192. <groupId>org.codehaus.mojo</groupId>
  1193. <artifactId>gwt-maven-plugin</artifactId>
  1194. <versionRange>[1.0,)</versionRange>
  1195. <goals>
  1196. <goal>compile</goal>
  1197. </goals>
  1198. </pluginExecutionFilter>
  1199. <action>
  1200. <ignore/>
  1201. </action>
  1202. </pluginExecution>
  1203. <pluginExecution>
  1204. <pluginExecutionFilter>
  1205. <groupId>org.codehaus.sonar</groupId>
  1206. <artifactId>sonar-dev-maven-plugin</artifactId>
  1207. <versionRange>[1.0,)</versionRange>
  1208. <goals>
  1209. <goal>trim</goal>
  1210. </goals>
  1211. </pluginExecutionFilter>
  1212. <action>
  1213. <ignore/>
  1214. </action>
  1215. </pluginExecution>
  1216. <pluginExecution>
  1217. <pluginExecutionFilter>
  1218. <groupId>org.apache.maven.plugins</groupId>
  1219. <artifactId>maven-dependency-plugin</artifactId>
  1220. <versionRange>[1.0,)</versionRange>
  1221. <goals>
  1222. <goal>unpack</goal>
  1223. <goal>copy-dependencies</goal>
  1224. </goals>
  1225. </pluginExecutionFilter>
  1226. <action>
  1227. <ignore/>
  1228. </action>
  1229. </pluginExecution>
  1230. <pluginExecution>
  1231. <pluginExecutionFilter>
  1232. <groupId>org.codehaus.mojo</groupId>
  1233. <artifactId>native2ascii-maven-plugin</artifactId>
  1234. <versionRange>[1.0-alpha-1,)</versionRange>
  1235. <goals>
  1236. <goal>native2ascii</goal>
  1237. </goals>
  1238. </pluginExecutionFilter>
  1239. <action>
  1240. <ignore/>
  1241. </action>
  1242. </pluginExecution>
  1243. </pluginExecutions>
  1244. </lifecycleMappingMetadata>
  1245. </configuration>
  1246. </plugin>
  1247. </plugins>
  1248. </pluginManagement>
  1249. </build>
  1250. </profile>
  1251. </profiles>
  1252. </project>