pom.xml 29 KB

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