pom.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  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. <groupId>org.codehaus.mojo</groupId>
  35. <artifactId>build-helper-maven-plugin</artifactId>
  36. <version>1.8</version>
  37. <executions>
  38. <execution>
  39. <id>parse-version</id>
  40. <phase>validate</phase>
  41. <goals>
  42. <goal>parse-version</goal>
  43. </goals>
  44. </execution>
  45. <execution>
  46. <id>regex-property</id>
  47. <goals>
  48. <goal>regex-property</goal>
  49. </goals>
  50. <configuration>
  51. <name>ambariVersion</name>
  52. <value>${project.version}</value>
  53. <regex>-SNAPSHOT</regex>
  54. <replacement></replacement>
  55. <failIfNoMatch>false</failIfNoMatch>
  56. </configuration>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-resources-plugin</artifactId>
  62. <version>2.6</version>
  63. <executions>
  64. <execution>
  65. <id>copy-resources</id>
  66. <phase>generate-test-resources</phase>
  67. <goals>
  68. <goal>copy-resources</goal>
  69. </goals>
  70. <configuration>
  71. <outputDirectory>${basedir}/target/</outputDirectory>
  72. <resources>
  73. <resource>
  74. <directory>${basedir}/../</directory>
  75. <includes>
  76. <include>**/version</include>
  77. </includes>
  78. <filtering>true</filtering>
  79. </resource>
  80. </resources>
  81. </configuration>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. <plugin>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <version>3.0</version>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-assembly-plugin</artifactId>
  91. <configuration>
  92. <descriptors>
  93. <descriptor>src/main/assemblies/server.xml</descriptor>
  94. </descriptors>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <id>build-tarball</id>
  99. <phase>package</phase>
  100. <goals>
  101. <goal>single</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.rat</groupId>
  108. <artifactId>apache-rat-plugin</artifactId>
  109. <configuration>
  110. <excludes>
  111. <exclude>pass.txt</exclude>
  112. <exclude>derby.log</exclude>
  113. <exclude>src/test/resources/users.ldif</exclude>
  114. <exclude>src/test/resources/gsInstaller-hosts.txt</exclude>
  115. <exclude>src/test/resources/temporal_ganglia_data.txt</exclude>
  116. <exclude>src/test/resources/users.ldif</exclude>
  117. <exclude>src/main/resources/ca.config</exclude>
  118. <exclude>src/main/resources/db/serial</exclude>
  119. <exclude>src/main/resources/db/index.txt</exclude>
  120. <exclude>conf/unix/ca.config</exclude>
  121. <exclude>**/*.json</exclude>
  122. <!--gitignore content-->
  123. <exclude>src/main/resources/db/newcerts/**</exclude>
  124. <!--test samples-->
  125. <exclude>src/test/resources/TestAmbaryServer.samples/**</exclude>
  126. </excludes>
  127. </configuration>
  128. </plugin>
  129. <!--<plugin>-->
  130. <!-- Will be used for DDL file update on server version update-->
  131. <!--<artifactId>maven-antrun-plugin</artifactId>-->
  132. <!--<executions>-->
  133. <!--<execution>-->
  134. <!--<id>Copy-server-version-file</id>-->
  135. <!--<phase>process-test-resources</phase>-->
  136. <!--<configuration>-->
  137. <!--<tasks>-->
  138. <!--<copy file="../version" todir="${project.build.directory}/"/>-->
  139. <!--</tasks>-->
  140. <!--</configuration>-->
  141. <!--<goals>-->
  142. <!--<goal>run</goal>-->
  143. <!--</goals>-->
  144. <!--</execution>-->
  145. <!--</executions>-->
  146. <!--</plugin>-->
  147. <plugin>
  148. <groupId>org.codehaus.mojo</groupId>
  149. <artifactId>rpm-maven-plugin</artifactId>
  150. <version>2.0.1</version>
  151. <executions>
  152. <execution>
  153. <!-- unbinds rpm creation from maven lifecycle -->
  154. <phase>none</phase>
  155. <goals>
  156. <goal>rpm</goal>
  157. </goals>
  158. </execution>
  159. </executions>
  160. <configuration>
  161. <copyright>2012, Apache Software Foundation</copyright>
  162. <version>${project.version}</version>
  163. <group>Development</group>
  164. <description>Maven Recipe: RPM Package.</description>
  165. <requires>
  166. <require>postgresql-server &gt;= 8.1</require>
  167. <require>openssl</require>
  168. <require>${python.ver}</require>
  169. </requires>
  170. <postinstallScriptlet>
  171. <scriptFile>src/main/package/rpm/postinstall.sh</scriptFile>
  172. <fileEncoding>utf-8</fileEncoding>
  173. </postinstallScriptlet>
  174. <preinstallScriptlet>
  175. <scriptFile>src/main/package/rpm/preinstall.sh</scriptFile>
  176. <fileEncoding>utf-8</fileEncoding>
  177. </preinstallScriptlet>
  178. <preremoveScriptlet>
  179. <scriptFile>src/main/package/rpm/preremove.sh</scriptFile>
  180. <fileEncoding>utf-8</fileEncoding>
  181. </preremoveScriptlet>
  182. <mappings>
  183. <mapping>
  184. <directory>/usr/lib/ambari-server</directory>
  185. <dependency>
  186. </dependency>
  187. <filemode>755</filemode>
  188. <username>root</username>
  189. <groupname>root</groupname>
  190. </mapping>
  191. <mapping>
  192. <directory>/usr/lib/ambari-server/web</directory>
  193. <filemode>755</filemode>
  194. <username>root</username>
  195. <groupname>root</groupname>
  196. <sources>
  197. <source>
  198. <location>${basedir}/../ambari-web/public</location>
  199. <includes>
  200. <include>**</include>
  201. </includes>
  202. </source>
  203. </sources>
  204. </mapping>
  205. <mapping>
  206. <directory>/usr/lib/ambari-server</directory>
  207. <filemode>755</filemode>
  208. <username>root</username>
  209. <groupname>root</groupname>
  210. <sources>
  211. <source>
  212. <location>${project.build.directory}/${project.artifactId}-${project.version}.jar</location>
  213. </source>
  214. </sources>
  215. </mapping>
  216. <mapping>
  217. <directory>/usr/sbin</directory>
  218. <filemode>755</filemode>
  219. <username>root</username>
  220. <groupname>root</groupname>
  221. <sources>
  222. <source>
  223. <location>src/main/python/ambari-server.py</location>
  224. </source>
  225. </sources>
  226. </mapping>
  227. <mapping>
  228. <directory>/usr/sbin</directory>
  229. <filemode>755</filemode>
  230. <username>root</username>
  231. <groupname>root</groupname>
  232. <sources>
  233. <source>
  234. <location>sbin/ambari-server</location>
  235. </source>
  236. </sources>
  237. </mapping>
  238. <mapping>
  239. <directory>/etc/ambari-server/conf</directory>
  240. <filemode>755</filemode>
  241. <username>root</username>
  242. <groupname>root</groupname>
  243. <configuration>true</configuration>
  244. <sources>
  245. <source>
  246. <location>conf/unix/ambari.properties</location>
  247. </source>
  248. <source>
  249. <location>conf/unix/log4j.properties</location>
  250. </source>
  251. </sources>
  252. </mapping>
  253. <mapping>
  254. <directory>/var/lib/ambari-server/</directory>
  255. <filemode>700</filemode>
  256. <username>root</username>
  257. <groupname>root</groupname>
  258. <sources>
  259. <source>
  260. <location>conf/unix/ambari-env.sh</location>
  261. </source>
  262. </sources>
  263. </mapping>
  264. <mapping>
  265. <directory>/var/lib/ambari-server/keys</directory>
  266. <filemode>755</filemode>
  267. <username>root</username>
  268. <groupname>root</groupname>
  269. <sources>
  270. <source>
  271. <location>conf/unix/ca.config</location>
  272. </source>
  273. </sources>
  274. </mapping>
  275. <mapping>
  276. <directory>/var/lib/ambari-server/keys/db</directory>
  277. <filemode>755</filemode>
  278. <username>root</username>
  279. <groupname>root</groupname>
  280. <sources>
  281. <source>
  282. <location>src/main/resources/db</location>
  283. </source>
  284. </sources>
  285. </mapping>
  286. <mapping>
  287. <directory>/var/run/ambari-server/bootstrap</directory>
  288. <filemode>755</filemode>
  289. <username>root</username>
  290. <groupname>root</groupname>
  291. </mapping>
  292. <mapping>
  293. <directory>/var/log/ambari-server</directory>
  294. <filemode>755</filemode>
  295. <username>root</username>
  296. <groupname>root</groupname>
  297. </mapping>
  298. <mapping>
  299. <directory>/var/lib/ambari-server/resources</directory>
  300. <filemode>755</filemode>
  301. <username>root</username>
  302. <groupname>root</groupname>
  303. <sources>
  304. <source>
  305. <location>src/main/resources/Ambari-DDL-Postgres-CREATE.sql</location>
  306. <filter>true</filter>
  307. </source>
  308. <source>
  309. <location>src/main/resources/Ambari-DDL-Postgres-DROP.sql</location>
  310. </source>
  311. <source>
  312. <location>src/main/resources/Ambari-DDL-Postgres-REMOTE-CREATE.sql</location>
  313. <filter>true</filter>
  314. </source>
  315. <source>
  316. <location>src/main/resources/Ambari-DDL-Postgres-REMOTE-DROP.sql</location>
  317. </source>
  318. <source>
  319. <location>src/main/resources/Ambari-DDL-Oracle-CREATE.sql</location>
  320. <filter>true</filter>
  321. </source>
  322. <source>
  323. <location>src/main/resources/Ambari-DDL-MySQL-CREATE.sql</location>
  324. <filter>true</filter>
  325. </source>
  326. <source>
  327. <location>src/main/resources/Ambari-DDL-Oracle-DROP.sql</location>
  328. </source>
  329. <source>
  330. <location>src/main/resources/Ambari-DDL-MySQL-DROP.sql</location>
  331. </source>
  332. </sources>
  333. </mapping>
  334. <mapping>
  335. <directory>/var/lib/ambari-server/resources/upgrade</directory>
  336. <filemode>755</filemode>
  337. <username>root</username>
  338. <groupname>root</groupname>
  339. </mapping>
  340. <mapping>
  341. <directory>/var/lib/ambari-server/resources/upgrade/ddl</directory>
  342. <filemode>755</filemode>
  343. <username>root</username>
  344. <groupname>root</groupname>
  345. <sources>
  346. <source>
  347. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.sql</location>
  348. <filter>true</filter>
  349. </source>
  350. <source>
  351. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.Fix.sql</location>
  352. </source>
  353. <source>
  354. <location>src/main/resources/upgrade/ddl/Ambari-DDL-Postgres-UPGRADE-1.3.0.Check.sql</location>
  355. </source>
  356. </sources>
  357. </mapping>
  358. <mapping>
  359. <directory>/var/lib/ambari-server/resources/upgrade/dml</directory>
  360. <filemode>755</filemode>
  361. <username>root</username>
  362. <groupname>root</groupname>
  363. <sources>
  364. <source>
  365. <location>src/main/resources/upgrade/dml/Ambari-DML-Postgres-UPGRADE_STACK.sql</location>
  366. </source>
  367. </sources>
  368. </mapping>
  369. <mapping>
  370. <directory>/var/lib/ambari-server/resources/stacks/HDP</directory>
  371. <filemode>755</filemode>
  372. <username>root</username>
  373. <groupname>root</groupname>
  374. <sources>
  375. <source>
  376. <location>src/main/resources/stacks/HDP</location>
  377. </source>
  378. </sources>
  379. </mapping>
  380. <mapping>
  381. <directory>/var/lib/ambari-server/resources/stacks/HDPLocal</directory>
  382. <filemode>755</filemode>
  383. <username>root</username>
  384. <groupname>root</groupname>
  385. <configuration>noreplace</configuration>
  386. <sources>
  387. <source>
  388. <location>src/main/resources/stacks/HDPLocal</location>
  389. </source>
  390. </sources>
  391. </mapping>
  392. <mapping>
  393. <directory>/usr/lib/python2.6/site-packages/ambari_server</directory>
  394. <filemode>755</filemode>
  395. <username>root</username>
  396. <groupname>root</groupname>
  397. <sources>
  398. <source>
  399. <location>src/main/python/bootstrap.py</location>
  400. </source>
  401. <source>
  402. <location>src/main/python/setupAgent.py</location>
  403. </source>
  404. <source>
  405. <location>src/main/python/os_type_check.sh</location>
  406. </source>
  407. </sources>
  408. </mapping>
  409. <mapping>
  410. <directory>/var/run/ambari-server</directory>
  411. <filemode>755</filemode>
  412. <username>root</username>
  413. <groupname>root</groupname>
  414. </mapping>
  415. <mapping>
  416. <directory>/etc/rc.d/init.d</directory>
  417. <filemode>755</filemode>
  418. <username>root</username>
  419. <groupname>root</groupname>
  420. <sources>
  421. <source>
  422. <location>etc/init.d/ambari-server</location>
  423. </source>
  424. </sources>
  425. </mapping>
  426. <mapping>
  427. <directory>/var/lib/ambari-server/resources</directory>
  428. <filemode>755</filemode>
  429. <username>root</username>
  430. <groupname>root</groupname>
  431. <sources>
  432. <source>
  433. <location>../version</location>
  434. <filter>true</filter>
  435. </source>
  436. </sources>
  437. </mapping>
  438. </mappings>
  439. </configuration>
  440. </plugin>
  441. <plugin>
  442. <groupId>org.codehaus.mojo</groupId>
  443. <artifactId>findbugs-maven-plugin</artifactId>
  444. <version>2.5.2</version>
  445. <configuration>
  446. <failOnError>false</failOnError>
  447. </configuration>
  448. <executions>
  449. <execution>
  450. <phase>verify</phase>
  451. <goals>
  452. <goal>check</goal>
  453. </goals>
  454. </execution>
  455. </executions>
  456. </plugin>
  457. <plugin>
  458. <groupId>org.codehaus.mojo</groupId>
  459. <artifactId>exec-maven-plugin</artifactId>
  460. <version>1.2</version>
  461. <executions>
  462. <execution>
  463. <configuration>
  464. <executable>python2.6</executable>
  465. <workingDirectory>src/test/python</workingDirectory>
  466. <arguments>
  467. <argument>unitTests.py</argument>
  468. </arguments>
  469. <environmentVariables>
  470. <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>
  471. </environmentVariables>
  472. <skip>${skipTests}</skip>
  473. </configuration>
  474. <id>python-test</id>
  475. <phase>test</phase>
  476. <goals>
  477. <goal>exec</goal>
  478. </goals>
  479. </execution>
  480. </executions>
  481. </plugin>
  482. <plugin>
  483. <groupId>com.atlassian.maven.plugins</groupId>
  484. <artifactId>maven-clover2-plugin</artifactId>
  485. <version>3.1.11</version>
  486. <!--
  487. <configuration>
  488. <licenseLocation>/path/to/clover.license</licenseLocation>
  489. </configuration>
  490. -->
  491. </plugin>
  492. </plugins>
  493. <resources>
  494. <resource>
  495. <directory>src/main/resources</directory>
  496. <filtering>true</filtering>
  497. </resource>
  498. </resources>
  499. </build>
  500. <profiles>
  501. </profiles>
  502. <dependencies>
  503. <dependency>
  504. <groupId>commons-io</groupId>
  505. <artifactId>commons-io</artifactId>
  506. </dependency>
  507. <dependency>
  508. <groupId>com.google.inject.extensions</groupId>
  509. <artifactId>guice-assistedinject</artifactId>
  510. </dependency>
  511. <dependency>
  512. <groupId>com.google.inject.extensions</groupId>
  513. <artifactId>guice-persist</artifactId>
  514. </dependency>
  515. <dependency>
  516. <groupId>com.google.inject.extensions</groupId>
  517. <artifactId>guice-servlet</artifactId>
  518. </dependency>
  519. <dependency>
  520. <groupId>org.apache.derby</groupId>
  521. <artifactId>derby</artifactId>
  522. </dependency>
  523. <dependency>
  524. <groupId>org.springframework.security</groupId>
  525. <artifactId>spring-security-core</artifactId>
  526. </dependency>
  527. <dependency>
  528. <groupId>org.springframework.security</groupId>
  529. <artifactId>spring-security-config</artifactId>
  530. </dependency>
  531. <dependency>
  532. <groupId>org.springframework.security</groupId>
  533. <artifactId>spring-security-web</artifactId>
  534. </dependency>
  535. <dependency>
  536. <groupId>org.springframework</groupId>
  537. <artifactId>spring-mock</artifactId>
  538. <scope>test</scope>
  539. </dependency>
  540. <dependency>
  541. <groupId>org.springframework.security</groupId>
  542. <artifactId>spring-security-ldap</artifactId>
  543. </dependency>
  544. <dependency>
  545. <groupId>org.springframework.ldap</groupId>
  546. <artifactId>spring-ldap-core</artifactId>
  547. </dependency>
  548. <dependency>
  549. <groupId>org.apache.directory.server</groupId>
  550. <artifactId>apacheds-core</artifactId>
  551. </dependency>
  552. <dependency>
  553. <groupId>org.apache.directory.server</groupId>
  554. <artifactId>apacheds-protocol-ldap</artifactId>
  555. </dependency>
  556. <dependency>
  557. <groupId>org.apache.directory.shared</groupId>
  558. <artifactId>shared-ldap</artifactId>
  559. </dependency>
  560. <dependency>
  561. <groupId>org.slf4j</groupId>
  562. <artifactId>slf4j-api</artifactId>
  563. </dependency>
  564. <dependency>
  565. <groupId>org.slf4j</groupId>
  566. <artifactId>slf4j-log4j12</artifactId>
  567. </dependency>
  568. <dependency>
  569. <groupId>log4j</groupId>
  570. <artifactId>log4j</artifactId>
  571. </dependency>
  572. <dependency>
  573. <groupId>org.eclipse.persistence</groupId>
  574. <artifactId>eclipselink</artifactId>
  575. </dependency>
  576. <dependency>
  577. <groupId>org.mockito</groupId>
  578. <artifactId>mockito-core</artifactId>
  579. <scope>test</scope>
  580. </dependency>
  581. <dependency>
  582. <groupId>org.eclipse.jetty</groupId>
  583. <artifactId>jetty-security</artifactId>
  584. </dependency>
  585. <dependency>
  586. <groupId>org.eclipse.jetty</groupId>
  587. <artifactId>jetty-servlet</artifactId>
  588. </dependency>
  589. <dependency>
  590. <groupId>org.eclipse.jetty</groupId>
  591. <artifactId>jetty-webapp</artifactId>
  592. </dependency>
  593. <dependency>
  594. <groupId>org.eclipse.jetty</groupId>
  595. <artifactId>jetty-server</artifactId>
  596. </dependency>
  597. <dependency>
  598. <groupId>commons-logging</groupId>
  599. <artifactId>commons-logging</artifactId>
  600. </dependency>
  601. <dependency>
  602. <groupId>commons-codec</groupId>
  603. <artifactId>commons-codec</artifactId>
  604. </dependency>
  605. <dependency>
  606. <groupId>commons-lang</groupId>
  607. <artifactId>commons-lang</artifactId>
  608. </dependency>
  609. <dependency>
  610. <groupId>commons-httpclient</groupId>
  611. <artifactId>commons-httpclient</artifactId>
  612. </dependency>
  613. <dependency>
  614. <groupId>javax.servlet</groupId>
  615. <artifactId>servlet-api</artifactId>
  616. </dependency>
  617. <dependency>
  618. <groupId>com.sun.jersey</groupId>
  619. <artifactId>jersey-json</artifactId>
  620. <exclusions>
  621. <exclusion>
  622. <groupId>org.codehaus.jackson</groupId>
  623. <artifactId>jackson-xc</artifactId>
  624. </exclusion>
  625. <exclusion>
  626. <groupId>org.codehaus.jettison</groupId>
  627. <artifactId>jettison</artifactId>
  628. </exclusion>
  629. <exclusion>
  630. <groupId>org.codehaus.jackson</groupId>
  631. <artifactId>jackson-mapper-asl</artifactId>
  632. </exclusion>
  633. </exclusions>
  634. </dependency>
  635. <dependency>
  636. <groupId>com.sun.jersey</groupId>
  637. <artifactId>jersey-server</artifactId>
  638. </dependency>
  639. <dependency>
  640. <groupId>com.sun.jersey</groupId>
  641. <artifactId>jersey-client</artifactId>
  642. </dependency>
  643. <dependency>
  644. <groupId>com.sun.jersey.contribs</groupId>
  645. <artifactId>jersey-multipart</artifactId>
  646. </dependency>
  647. <dependency>
  648. <groupId>com.sun.jersey.contribs</groupId>
  649. <artifactId>jersey-guice</artifactId>
  650. </dependency>
  651. <dependency>
  652. <groupId>org.codehaus.jackson</groupId>
  653. <artifactId>jackson-mapper-asl</artifactId>
  654. <version>1.9.2</version>
  655. </dependency>
  656. <dependency>
  657. <groupId>org.codehaus.jackson</groupId>
  658. <artifactId>jackson-core-asl</artifactId>
  659. </dependency>
  660. <dependency>
  661. <groupId>org.codehaus.jackson</groupId>
  662. <artifactId>jackson-jaxrs</artifactId>
  663. </dependency>
  664. <dependency>
  665. <groupId>org.codehaus.jackson</groupId>
  666. <artifactId>jackson-xc</artifactId>
  667. </dependency>
  668. <dependency>
  669. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  670. <artifactId>jersey-test-framework-core</artifactId>
  671. <scope>test</scope>
  672. </dependency>
  673. <dependency>
  674. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  675. <artifactId>jersey-test-framework-grizzly2</artifactId>
  676. <scope>test</scope>
  677. </dependency>
  678. <dependency>
  679. <groupId>org.codehaus.jettison</groupId>
  680. <artifactId>jettison</artifactId>
  681. <scope>test</scope>
  682. </dependency>
  683. <dependency>
  684. <groupId>junit</groupId>
  685. <artifactId>junit</artifactId>
  686. <scope>test</scope>
  687. </dependency>
  688. <dependency>
  689. <groupId>org.easymock</groupId>
  690. <artifactId>easymock</artifactId>
  691. <version>3.1</version>
  692. <scope>test</scope>
  693. </dependency>
  694. <dependency>
  695. <groupId>org.objenesis</groupId>
  696. <artifactId>objenesis-tck</artifactId>
  697. <version>1.2</version>
  698. </dependency>
  699. <dependency>
  700. <groupId>cglib</groupId>
  701. <artifactId>cglib</artifactId>
  702. <version>2.2.2</version>
  703. </dependency>
  704. <dependency>
  705. <groupId>asm</groupId>
  706. <artifactId>asm</artifactId>
  707. <version>3.3.1</version>
  708. </dependency>
  709. <dependency>
  710. <groupId>org.xerial</groupId>
  711. <artifactId>sqlite-jdbc</artifactId>
  712. <version>3.7.2</version>
  713. </dependency>
  714. <dependency>
  715. <groupId>com.google.inject</groupId>
  716. <artifactId>guice</artifactId>
  717. <version>3.0</version>
  718. </dependency>
  719. <dependency>
  720. <groupId>com.google.code.gson</groupId>
  721. <artifactId>gson</artifactId>
  722. <version>2.2.2</version>
  723. </dependency>
  724. <dependency>
  725. <groupId>postgresql</groupId>
  726. <artifactId>postgresql</artifactId>
  727. <version>9.1-901.jdbc4</version>
  728. </dependency>
  729. </dependencies>
  730. <!--<reporting>
  731. <plugins>
  732. <plugin>
  733. <groupId>org.codehaus.mojo</groupId>
  734. <artifactId>findbugs-maven-plugin</artifactId>
  735. <version>2.5.2</version>
  736. </plugin>
  737. </plugins>
  738. </reporting>-->
  739. </project>