pom.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  14. <parent>
  15. <groupId>org.apache.ambari</groupId>
  16. <artifactId>ambari-project</artifactId>
  17. <version>1.3.0-SNAPSHOT</version>
  18. <relativePath>../ambari-project</relativePath>
  19. </parent>
  20. <modelVersion>4.0.0</modelVersion>
  21. <groupId>org.apache.ambari</groupId>
  22. <artifactId>ambari-server</artifactId>
  23. <packaging>jar</packaging>
  24. <name>Ambari Server</name>
  25. <version>1.3.0-SNAPSHOT</version>
  26. <description>Ambari Server</description>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <python.ver>python &gt;= 2.6</python.ver>
  30. </properties>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.0</version>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-assembly-plugin</artifactId>
  39. <configuration>
  40. <descriptors>
  41. <descriptor>src/main/assemblies/server.xml</descriptor>
  42. </descriptors>
  43. </configuration>
  44. <executions>
  45. <execution>
  46. <id>build-tarball</id>
  47. <phase>package</phase>
  48. <goals>
  49. <goal>single</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.rat</groupId>
  56. <artifactId>apache-rat-plugin</artifactId>
  57. <configuration>
  58. <excludes>
  59. <exclude>pass.txt</exclude>
  60. <exclude>derby.log</exclude>
  61. <exclude>src/test/resources/users.ldif</exclude>
  62. <exclude>src/test/resources/gsInstaller-hosts.txt</exclude>
  63. <exclude>src/test/resources/temporal_ganglia_data.txt</exclude>
  64. <exclude>src/test/resources/users.ldif</exclude>
  65. <exclude>src/main/resources/ca.config</exclude>
  66. <exclude>src/main/resources/db/serial</exclude>
  67. <exclude>src/main/resources/db/index.txt</exclude>
  68. <exclude>conf/unix/ca.config</exclude>
  69. <exclude>**/*.json</exclude>
  70. <!--gitignore content-->
  71. <exclude>src/main/resources/db/newcerts/**</exclude>
  72. <!--test samples-->
  73. <exclude>src/test/resources/TestAmbaryServer.samples/**</exclude>
  74. </excludes>
  75. </configuration>
  76. </plugin>
  77. <!--<plugin>-->
  78. <!-- Will be used for DDL file update on server version update-->
  79. <!--<artifactId>maven-antrun-plugin</artifactId>-->
  80. <!--<executions>-->
  81. <!--<execution>-->
  82. <!--<id>Copy-server-version-file</id>-->
  83. <!--<phase>process-test-resources</phase>-->
  84. <!--<configuration>-->
  85. <!--<tasks>-->
  86. <!--<copy file="../version" todir="${project.build.directory}/"/>-->
  87. <!--</tasks>-->
  88. <!--</configuration>-->
  89. <!--<goals>-->
  90. <!--<goal>run</goal>-->
  91. <!--</goals>-->
  92. <!--</execution>-->
  93. <!--</executions>-->
  94. <!--</plugin>-->
  95. <plugin>
  96. <groupId>org.codehaus.mojo</groupId>
  97. <artifactId>rpm-maven-plugin</artifactId>
  98. <version>2.0.1</version>
  99. <executions>
  100. <execution>
  101. <!-- unbinds rpm creation from maven lifecycle -->
  102. <phase>none</phase>
  103. <goals>
  104. <goal>rpm</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. <configuration>
  109. <copyright>2012, Apache Software Foundation</copyright>
  110. <version>${project.version}</version>
  111. <group>Development</group>
  112. <description>Maven Recipe: RPM Package.</description>
  113. <requires>
  114. <require>postgresql-server &gt;= 8.1</require>
  115. <require>openssl</require>
  116. <require>${python.ver}</require>
  117. </requires>
  118. <postinstallScriptlet>
  119. <scriptFile>src/main/package/rpm/postinstall.sh</scriptFile>
  120. <fileEncoding>utf-8</fileEncoding>
  121. </postinstallScriptlet>
  122. <preinstallScriptlet>
  123. <scriptFile>src/main/package/rpm/preinstall.sh</scriptFile>
  124. <fileEncoding>utf-8</fileEncoding>
  125. </preinstallScriptlet>
  126. <preremoveScriptlet>
  127. <scriptFile>src/main/package/rpm/preremove.sh</scriptFile>
  128. <fileEncoding>utf-8</fileEncoding>
  129. </preremoveScriptlet>
  130. <mappings>
  131. <mapping>
  132. <directory>/usr/lib/ambari-server</directory>
  133. <dependency>
  134. </dependency>
  135. <filemode>755</filemode>
  136. <username>root</username>
  137. <groupname>root</groupname>
  138. </mapping>
  139. <mapping>
  140. <directory>/usr/lib/ambari-server/web</directory>
  141. <filemode>755</filemode>
  142. <username>root</username>
  143. <groupname>root</groupname>
  144. <sources>
  145. <source>
  146. <location>${basedir}/../ambari-web/public</location>
  147. <includes>
  148. <include>**</include>
  149. </includes>
  150. </source>
  151. </sources>
  152. </mapping>
  153. <mapping>
  154. <directory>/usr/lib/ambari-server</directory>
  155. <filemode>755</filemode>
  156. <username>root</username>
  157. <groupname>root</groupname>
  158. <sources>
  159. <source>
  160. <location>${project.build.directory}/${project.artifactId}-${project.version}.jar</location>
  161. </source>
  162. </sources>
  163. </mapping>
  164. <mapping>
  165. <directory>/usr/sbin</directory>
  166. <filemode>755</filemode>
  167. <username>root</username>
  168. <groupname>root</groupname>
  169. <sources>
  170. <source>
  171. <location>src/main/python/ambari-server.py</location>
  172. </source>
  173. </sources>
  174. </mapping>
  175. <mapping>
  176. <directory>/usr/sbin</directory>
  177. <filemode>755</filemode>
  178. <username>root</username>
  179. <groupname>root</groupname>
  180. <sources>
  181. <source>
  182. <location>sbin/ambari-server</location>
  183. </source>
  184. </sources>
  185. </mapping>
  186. <mapping>
  187. <directory>/etc/ambari-server/conf</directory>
  188. <filemode>755</filemode>
  189. <username>root</username>
  190. <groupname>root</groupname>
  191. <configuration>true</configuration>
  192. <sources>
  193. <source>
  194. <location>conf/unix/ambari.properties</location>
  195. </source>
  196. <source>
  197. <location>conf/unix/log4j.properties</location>
  198. </source>
  199. </sources>
  200. </mapping>
  201. <mapping>
  202. <directory>/var/lib/ambari-server/</directory>
  203. <filemode>700</filemode>
  204. <username>root</username>
  205. <groupname>root</groupname>
  206. <sources>
  207. <source>
  208. <location>conf/unix/ambari-env.sh</location>
  209. </source>
  210. </sources>
  211. </mapping>
  212. <mapping>
  213. <directory>/var/lib/ambari-server/keys</directory>
  214. <filemode>755</filemode>
  215. <username>root</username>
  216. <groupname>root</groupname>
  217. <sources>
  218. <source>
  219. <location>conf/unix/ca.config</location>
  220. </source>
  221. </sources>
  222. </mapping>
  223. <mapping>
  224. <directory>/var/lib/ambari-server/keys/db</directory>
  225. <filemode>755</filemode>
  226. <username>root</username>
  227. <groupname>root</groupname>
  228. <sources>
  229. <source>
  230. <location>src/main/resources/db</location>
  231. </source>
  232. </sources>
  233. </mapping>
  234. <mapping>
  235. <directory>/var/run/ambari-server/bootstrap</directory>
  236. <filemode>755</filemode>
  237. <username>root</username>
  238. <groupname>root</groupname>
  239. </mapping>
  240. <mapping>
  241. <directory>/var/log/ambari-server</directory>
  242. <filemode>755</filemode>
  243. <username>root</username>
  244. <groupname>root</groupname>
  245. </mapping>
  246. <mapping>
  247. <directory>/var/lib/ambari-server/resources</directory>
  248. <filemode>755</filemode>
  249. <username>root</username>
  250. <groupname>root</groupname>
  251. <sources>
  252. <source>
  253. <location>src/main/resources/Ambari-DDL-Postgres-CREATE.sql</location>
  254. </source>
  255. <source>
  256. <location>src/main/resources/Ambari-DDL-Postgres-DROP.sql</location>
  257. </source>
  258. </sources>
  259. </mapping>
  260. <mapping>
  261. <directory>/var/lib/ambari-server/resources/upgrade</directory>
  262. <filemode>755</filemode>
  263. <username>root</username>
  264. <groupname>root</groupname>
  265. </mapping>
  266. <mapping>
  267. <directory>/var/lib/ambari-server/resources/upgrade/ddl</directory>
  268. <filemode>755</filemode>
  269. <username>root</username>
  270. <groupname>root</groupname>
  271. <sources>
  272. <source>
  273. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.sql</location>
  274. </source>
  275. <source>
  276. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.Fix.sql</location>
  277. </source>
  278. <source>
  279. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.Check.sql</location>
  280. </source>
  281. </sources>
  282. </mapping>
  283. <mapping>
  284. <directory>/var/lib/ambari-server/resources/upgrade/dml</directory>
  285. <filemode>755</filemode>
  286. <username>root</username>
  287. <groupname>root</groupname>
  288. <sources>
  289. <source>
  290. <location>src/main/resources/upgrade/dml/Ambari-DML-Postgres-UPGRADE_STACK.sql</location>
  291. </source>
  292. </sources>
  293. </mapping>
  294. <mapping>
  295. <directory>/var/lib/ambari-server/resources/stacks/HDP</directory>
  296. <filemode>755</filemode>
  297. <username>root</username>
  298. <groupname>root</groupname>
  299. <sources>
  300. <source>
  301. <location>src/main/resources/stacks/HDP</location>
  302. </source>
  303. </sources>
  304. </mapping>
  305. <mapping>
  306. <directory>/var/lib/ambari-server/resources/stacks/HDPLocal</directory>
  307. <filemode>755</filemode>
  308. <username>root</username>
  309. <groupname>root</groupname>
  310. <configuration>noreplace</configuration>
  311. <sources>
  312. <source>
  313. <location>src/main/resources/stacks/HDPLocal</location>
  314. </source>
  315. </sources>
  316. </mapping>
  317. <mapping>
  318. <directory>/usr/lib/python2.6/site-packages/ambari_server</directory>
  319. <filemode>755</filemode>
  320. <username>root</username>
  321. <groupname>root</groupname>
  322. <sources>
  323. <source>
  324. <location>src/main/python/bootstrap.py</location>
  325. </source>
  326. <source>
  327. <location>src/main/python/setupAgent.py</location>
  328. </source>
  329. <source>
  330. <location>src/main/python/os_type_check.sh</location>
  331. </source>
  332. </sources>
  333. </mapping>
  334. <mapping>
  335. <directory>/var/run/ambari-server</directory>
  336. <filemode>755</filemode>
  337. <username>root</username>
  338. <groupname>root</groupname>
  339. </mapping>
  340. <mapping>
  341. <directory>/etc/rc.d/init.d</directory>
  342. <filemode>755</filemode>
  343. <username>root</username>
  344. <groupname>root</groupname>
  345. <sources>
  346. <source>
  347. <location>etc/init.d/ambari-server</location>
  348. </source>
  349. </sources>
  350. </mapping>
  351. <mapping>
  352. <directory>/var/lib/ambari-server/resources</directory>
  353. <filemode>755</filemode>
  354. <username>root</username>
  355. <groupname>root</groupname>
  356. <sources>
  357. <source>
  358. <location>../version</location>
  359. </source>
  360. </sources>
  361. </mapping>
  362. </mappings>
  363. </configuration>
  364. </plugin>
  365. <plugin>
  366. <groupId>org.codehaus.mojo</groupId>
  367. <artifactId>findbugs-maven-plugin</artifactId>
  368. <version>2.5.2</version>
  369. <configuration>
  370. <failOnError>false</failOnError>
  371. </configuration>
  372. <executions>
  373. <execution>
  374. <phase>verify</phase>
  375. <goals>
  376. <goal>check</goal>
  377. </goals>
  378. </execution>
  379. </executions>
  380. </plugin>
  381. <plugin>
  382. <groupId>org.codehaus.mojo</groupId>
  383. <artifactId>exec-maven-plugin</artifactId>
  384. <version>1.2</version>
  385. <executions>
  386. <execution>
  387. <configuration>
  388. <executable>python2.6</executable>
  389. <workingDirectory>src/test/python</workingDirectory>
  390. <arguments>
  391. <argument>unitTests.py</argument>
  392. </arguments>
  393. <environmentVariables>
  394. <PYTHONPATH>${project.basedir}/../ambari-common/src/test/python:${project.basedir}/src/main/python:${project.basedir}/src/main/python/ambari-server-state:${project.basedir}/src/test/python:$PYTHONPATH</PYTHONPATH>
  395. </environmentVariables>
  396. <skip>${skipTests}</skip>
  397. </configuration>
  398. <id>default-cli</id>
  399. <phase>test</phase>
  400. <goals>
  401. <goal>exec</goal>
  402. </goals>
  403. </execution>
  404. </executions>
  405. </plugin>
  406. <plugin>
  407. <groupId>com.atlassian.maven.plugins</groupId>
  408. <artifactId>maven-clover2-plugin</artifactId>
  409. <version>3.1.11</version>
  410. <!--
  411. <configuration>
  412. <licenseLocation>/path/to/clover.license</licenseLocation>
  413. </configuration>
  414. -->
  415. </plugin>
  416. </plugins>
  417. </build>
  418. <profiles>
  419. </profiles>
  420. <dependencies>
  421. <dependency>
  422. <groupId>commons-io</groupId>
  423. <artifactId>commons-io</artifactId>
  424. </dependency>
  425. <dependency>
  426. <groupId>com.google.inject.extensions</groupId>
  427. <artifactId>guice-assistedinject</artifactId>
  428. </dependency>
  429. <dependency>
  430. <groupId>com.google.inject.extensions</groupId>
  431. <artifactId>guice-persist</artifactId>
  432. </dependency>
  433. <dependency>
  434. <groupId>com.google.inject.extensions</groupId>
  435. <artifactId>guice-servlet</artifactId>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.apache.derby</groupId>
  439. <artifactId>derby</artifactId>
  440. </dependency>
  441. <dependency>
  442. <groupId>org.springframework.security</groupId>
  443. <artifactId>spring-security-core</artifactId>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.springframework.security</groupId>
  447. <artifactId>spring-security-config</artifactId>
  448. </dependency>
  449. <dependency>
  450. <groupId>org.springframework.security</groupId>
  451. <artifactId>spring-security-web</artifactId>
  452. </dependency>
  453. <dependency>
  454. <groupId>org.springframework.security</groupId>
  455. <artifactId>spring-security-ldap</artifactId>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.springframework.ldap</groupId>
  459. <artifactId>spring-ldap-core</artifactId>
  460. </dependency>
  461. <dependency>
  462. <groupId>org.apache.directory.server</groupId>
  463. <artifactId>apacheds-core</artifactId>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.apache.directory.server</groupId>
  467. <artifactId>apacheds-protocol-ldap</artifactId>
  468. </dependency>
  469. <dependency>
  470. <groupId>org.apache.directory.shared</groupId>
  471. <artifactId>shared-ldap</artifactId>
  472. </dependency>
  473. <dependency>
  474. <groupId>org.slf4j</groupId>
  475. <artifactId>slf4j-api</artifactId>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.slf4j</groupId>
  479. <artifactId>slf4j-log4j12</artifactId>
  480. </dependency>
  481. <dependency>
  482. <groupId>log4j</groupId>
  483. <artifactId>log4j</artifactId>
  484. </dependency>
  485. <dependency>
  486. <groupId>org.eclipse.persistence</groupId>
  487. <artifactId>eclipselink</artifactId>
  488. </dependency>
  489. <dependency>
  490. <groupId>org.mockito</groupId>
  491. <artifactId>mockito-core</artifactId>
  492. <scope>test</scope>
  493. </dependency>
  494. <dependency>
  495. <groupId>org.eclipse.jetty</groupId>
  496. <artifactId>jetty-security</artifactId>
  497. </dependency>
  498. <dependency>
  499. <groupId>org.eclipse.jetty</groupId>
  500. <artifactId>jetty-servlet</artifactId>
  501. </dependency>
  502. <dependency>
  503. <groupId>org.eclipse.jetty</groupId>
  504. <artifactId>jetty-webapp</artifactId>
  505. </dependency>
  506. <dependency>
  507. <groupId>org.eclipse.jetty</groupId>
  508. <artifactId>jetty-server</artifactId>
  509. </dependency>
  510. <dependency>
  511. <groupId>commons-logging</groupId>
  512. <artifactId>commons-logging</artifactId>
  513. </dependency>
  514. <dependency>
  515. <groupId>commons-codec</groupId>
  516. <artifactId>commons-codec</artifactId>
  517. </dependency>
  518. <dependency>
  519. <groupId>commons-lang</groupId>
  520. <artifactId>commons-lang</artifactId>
  521. </dependency>
  522. <dependency>
  523. <groupId>commons-httpclient</groupId>
  524. <artifactId>commons-httpclient</artifactId>
  525. </dependency>
  526. <dependency>
  527. <groupId>javax.servlet</groupId>
  528. <artifactId>servlet-api</artifactId>
  529. </dependency>
  530. <dependency>
  531. <groupId>com.sun.jersey</groupId>
  532. <artifactId>jersey-json</artifactId>
  533. <exclusions>
  534. <exclusion>
  535. <groupId>org.codehaus.jackson</groupId>
  536. <artifactId>jackson-xc</artifactId>
  537. </exclusion>
  538. <exclusion>
  539. <groupId>org.codehaus.jettison</groupId>
  540. <artifactId>jettison</artifactId>
  541. </exclusion>
  542. <exclusion>
  543. <groupId>org.codehaus.jackson</groupId>
  544. <artifactId>jackson-mapper-asl</artifactId>
  545. </exclusion>
  546. </exclusions>
  547. </dependency>
  548. <dependency>
  549. <groupId>com.sun.jersey</groupId>
  550. <artifactId>jersey-server</artifactId>
  551. </dependency>
  552. <dependency>
  553. <groupId>com.sun.jersey</groupId>
  554. <artifactId>jersey-client</artifactId>
  555. </dependency>
  556. <dependency>
  557. <groupId>com.sun.jersey.contribs</groupId>
  558. <artifactId>jersey-multipart</artifactId>
  559. </dependency>
  560. <dependency>
  561. <groupId>com.sun.jersey.contribs</groupId>
  562. <artifactId>jersey-guice</artifactId>
  563. </dependency>
  564. <dependency>
  565. <groupId>org.codehaus.jackson</groupId>
  566. <artifactId>jackson-mapper-asl</artifactId>
  567. <version>1.9.2</version>
  568. </dependency>
  569. <dependency>
  570. <groupId>org.codehaus.jackson</groupId>
  571. <artifactId>jackson-core-asl</artifactId>
  572. </dependency>
  573. <dependency>
  574. <groupId>org.codehaus.jackson</groupId>
  575. <artifactId>jackson-jaxrs</artifactId>
  576. </dependency>
  577. <dependency>
  578. <groupId>org.codehaus.jackson</groupId>
  579. <artifactId>jackson-xc</artifactId>
  580. </dependency>
  581. <dependency>
  582. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  583. <artifactId>jersey-test-framework-core</artifactId>
  584. <scope>test</scope>
  585. </dependency>
  586. <dependency>
  587. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  588. <artifactId>jersey-test-framework-grizzly2</artifactId>
  589. <scope>test</scope>
  590. </dependency>
  591. <dependency>
  592. <groupId>org.codehaus.jettison</groupId>
  593. <artifactId>jettison</artifactId>
  594. <scope>test</scope>
  595. </dependency>
  596. <dependency>
  597. <groupId>junit</groupId>
  598. <artifactId>junit</artifactId>
  599. <scope>test</scope>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.easymock</groupId>
  603. <artifactId>easymock</artifactId>
  604. <version>3.1</version>
  605. <scope>test</scope>
  606. </dependency>
  607. <dependency>
  608. <groupId>org.objenesis</groupId>
  609. <artifactId>objenesis-tck</artifactId>
  610. <version>1.2</version>
  611. </dependency>
  612. <dependency>
  613. <groupId>cglib</groupId>
  614. <artifactId>cglib</artifactId>
  615. <version>2.2.2</version>
  616. </dependency>
  617. <dependency>
  618. <groupId>asm</groupId>
  619. <artifactId>asm</artifactId>
  620. <version>3.3.1</version>
  621. </dependency>
  622. <dependency>
  623. <groupId>org.xerial</groupId>
  624. <artifactId>sqlite-jdbc</artifactId>
  625. <version>3.7.2</version>
  626. </dependency>
  627. <dependency>
  628. <groupId>com.google.inject</groupId>
  629. <artifactId>guice</artifactId>
  630. <version>3.0</version>
  631. </dependency>
  632. <dependency>
  633. <groupId>com.google.code.gson</groupId>
  634. <artifactId>gson</artifactId>
  635. <version>2.2.2</version>
  636. </dependency>
  637. <dependency>
  638. <groupId>postgresql</groupId>
  639. <artifactId>postgresql</artifactId>
  640. <version>9.1-901.jdbc4</version>
  641. </dependency>
  642. </dependencies>
  643. <!--<reporting>
  644. <plugins>
  645. <plugin>
  646. <groupId>org.codehaus.mojo</groupId>
  647. <artifactId>findbugs-maven-plugin</artifactId>
  648. <version>2.5.2</version>
  649. </plugin>
  650. </plugins>
  651. </reporting>-->
  652. </project>