pom.xml 27 KB

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