pom.xml 30 KB

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