pom.xml 29 KB

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