pom.xml 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293
  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.6.1.100</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.6.1.100</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. <deb.python.ver>python (&gt;= 2.6)</deb.python.ver>
  29. <deb.architecture>amd64</deb.architecture>
  30. <deb.dependency.list>openssl, postgresql (&gt;= 8.1), ${deb.python.ver}, curl</deb.dependency.list>
  31. <custom.tests>false</custom.tests>
  32. <hdpUrlForCentos6>http://public-repo-1.hortonworks.com/HDP/centos6/2.x/updates/2.1.1.0</hdpUrlForCentos6>
  33. <hdpLatestUrl>http://public-repo-1.hortonworks.com/HDP/hdp_urlinfo.json</hdpLatestUrl>
  34. <common_functions.install.dir>/usr/lib/ambari-server/lib/common_functions</common_functions.install.dir>
  35. <ambari-web-dir>${basedir}/../ambari-web/public</ambari-web-dir>
  36. </properties>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.codehaus.mojo</groupId>
  41. <artifactId>build-helper-maven-plugin</artifactId>
  42. <version>1.8</version>
  43. <executions>
  44. <execution>
  45. <id>parse-version</id>
  46. <phase>validate</phase>
  47. <goals>
  48. <goal>parse-version</goal>
  49. </goals>
  50. </execution>
  51. <execution>
  52. <id>regex-property</id>
  53. <goals>
  54. <goal>regex-property</goal>
  55. </goals>
  56. <configuration>
  57. <name>ambariVersion</name>
  58. <value>${project.version}</value>
  59. <regex>^([0-9]+)\.([0-9]+)\.([0-9]+)(\.|-).*</regex>
  60. <replacement>$1.$2.$3</replacement>
  61. <failIfNoMatch>false</failIfNoMatch>
  62. </configuration>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-resources-plugin</artifactId>
  68. <version>2.6</version>
  69. <executions>
  70. <execution>
  71. <id>copy-resources</id>
  72. <phase>generate-test-resources</phase>
  73. <goals>
  74. <goal>copy-resources</goal>
  75. </goals>
  76. <configuration>
  77. <outputDirectory>${basedir}/target/</outputDirectory>
  78. <resources>
  79. <resource>
  80. <directory>${basedir}/../</directory>
  81. <includes>
  82. <include>version</include>
  83. </includes>
  84. <filtering>true</filtering>
  85. </resource>
  86. <resource>
  87. <directory>${basedir}/sbin/</directory>
  88. <includes>
  89. <include>ambari-server</include>
  90. </includes>
  91. <filtering>true</filtering>
  92. </resource>
  93. </resources>
  94. </configuration>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. <plugin>
  99. <artifactId>maven-compiler-plugin</artifactId>
  100. <version>3.0</version>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-assembly-plugin</artifactId>
  104. <configuration>
  105. <descriptors>
  106. <descriptor>src/main/assemblies/server.xml</descriptor>
  107. </descriptors>
  108. <tarLongFileMode>gnu</tarLongFileMode>
  109. </configuration>
  110. <executions>
  111. <execution>
  112. <id>build-tarball</id>
  113. <phase>package</phase>
  114. <goals>
  115. <goal>single</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.rat</groupId>
  122. <artifactId>apache-rat-plugin</artifactId>
  123. <configuration>
  124. <excludes>
  125. <exclude>pass.txt</exclude>
  126. <exclude>derby.log</exclude>
  127. <exclude>src/test/resources/users.ldif</exclude>
  128. <exclude>src/test/resources/gsInstaller-hosts.txt</exclude>
  129. <exclude>src/test/resources/temporal_ganglia_data.txt</exclude>
  130. <exclude>src/test/resources/users.ldif</exclude>
  131. <exclude>src/main/resources/hive-schema-0.10.0.oracle.sql</exclude>
  132. <exclude>src/main/resources/hive-schema-0.12.0.oracle.sql</exclude>
  133. <exclude>src/main/resources/db/serial</exclude>
  134. <exclude>src/main/resources/db/index.txt</exclude>
  135. <exclude>src/main/resources/stacks/HDP/2.1.GlusterFS/services/YARN/package/templates/exclude_hosts_list.j2</exclude>
  136. <exclude>conf/unix/ca.config</exclude>
  137. <exclude>conf/unix/krb5JAASLogin.conf</exclude>
  138. <exclude>**/*.json</exclude>
  139. <exclude>**/*.sql</exclude>
  140. <exclude>**/*.pydevproject</exclude>
  141. <!--gitignore content -->
  142. <exclude>src/main/resources/db/newcerts/**</exclude>
  143. <!-- Stack definitions -->
  144. <exclude>src/main/resources/stacks/HDP/2.0._/services/HBASE/package/templates/regionservers.j2</exclude>
  145. <!--test samples -->
  146. <exclude>src/test/resources/TestAmbaryServer.samples/**</exclude>
  147. <exclude>src/test/resources/*.txt</exclude>
  148. <exclude>src/test/resources/users_for_dn_with_space.ldif</exclude>
  149. </excludes>
  150. </configuration>
  151. <executions>
  152. <execution>
  153. <phase>test</phase>
  154. <goals>
  155. <goal>check</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. <plugin>
  161. <artifactId>eclipselink-staticweave-maven-plugin</artifactId>
  162. <groupId>au.com.alderaan</groupId>
  163. <version>1.0.4</version>
  164. <executions>
  165. <execution>
  166. <goals>
  167. <goal>weave</goal>
  168. </goals>
  169. <phase>process-classes</phase>
  170. <configuration>
  171. <logLevel>ALL</logLevel>
  172. <includeProjectClasspath>true</includeProjectClasspath>
  173. </configuration>
  174. </execution>
  175. </executions>
  176. <dependencies>
  177. <dependency>
  178. <groupId>org.eclipse.persistence</groupId>
  179. <artifactId>eclipselink</artifactId>
  180. <version>2.4.0</version>
  181. </dependency>
  182. </dependencies>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.codehaus.mojo</groupId>
  186. <artifactId>rpm-maven-plugin</artifactId>
  187. <version>2.0.1</version>
  188. <executions>
  189. <execution>
  190. <!-- unbinds rpm creation from maven lifecycle -->
  191. <phase>none</phase>
  192. <goals>
  193. <goal>rpm</goal>
  194. </goals>
  195. </execution>
  196. </executions>
  197. <configuration>
  198. <copyright>2012, Apache Software Foundation</copyright>
  199. <group>Development</group>
  200. <description>Maven Recipe: RPM Package.</description>
  201. <requires>
  202. <require>postgresql-server &gt;= 8.1</require>
  203. <require>openssl</require>
  204. <require>${python.ver}</require>
  205. </requires>
  206. <postinstallScriptlet>
  207. <scriptFile>src/main/package/rpm/postinstall.sh</scriptFile>
  208. <fileEncoding>utf-8</fileEncoding>
  209. </postinstallScriptlet>
  210. <preinstallScriptlet>
  211. <scriptFile>src/main/package/rpm/preinstall.sh</scriptFile>
  212. <fileEncoding>utf-8</fileEncoding>
  213. </preinstallScriptlet>
  214. <preremoveScriptlet>
  215. <scriptFile>src/main/package/rpm/preremove.sh</scriptFile>
  216. <fileEncoding>utf-8</fileEncoding>
  217. </preremoveScriptlet>
  218. <defaultFilemode>644</defaultFilemode>
  219. <defaultDirmode>755</defaultDirmode>
  220. <defaultUsername>root</defaultUsername>
  221. <defaultGroupname>root</defaultGroupname>
  222. <mappings>
  223. <mapping>
  224. <directory>/usr/lib/ambari-server</directory>
  225. <dependency>
  226. </dependency>
  227. </mapping>
  228. <mapping>
  229. <directory>/usr/lib/ambari-server/web</directory>
  230. <sources>
  231. <source>
  232. <location>${ambari-web-dir}</location>
  233. <includes>
  234. <include>**</include>
  235. </includes>
  236. </source>
  237. </sources>
  238. </mapping>
  239. <mapping>
  240. <directory>/usr/lib/ambari-server</directory>
  241. <sources>
  242. <source>
  243. <location>${project.build.directory}/${project.artifactId}-${project.version}.jar</location>
  244. </source>
  245. </sources>
  246. </mapping>
  247. <mapping>
  248. <directory>${common_functions.install.dir}</directory>
  249. <sources>
  250. <source>
  251. <location>
  252. ${project.basedir}/../ambari-common/src/main/python/common_functions
  253. </location>
  254. </source>
  255. </sources>
  256. </mapping>
  257. <mapping>
  258. <directory>/usr/sbin</directory>
  259. <filemode>755</filemode>
  260. <username>root</username>
  261. <groupname>root</groupname>
  262. <directoryIncluded>false</directoryIncluded>
  263. <sources>
  264. <source>
  265. <location>src/main/python/ambari-server.py</location>
  266. </source>
  267. <source>
  268. <location>sbin/ambari-server</location>
  269. <filter>true</filter>
  270. </source>
  271. </sources>
  272. </mapping>
  273. <mapping>
  274. <directory>/var/lib/ambari-server/</directory>
  275. <filemode>755</filemode>
  276. <username>root</username>
  277. <groupname>root</groupname>
  278. <directoryIncluded>false</directoryIncluded>
  279. <sources>
  280. <source>
  281. <location>../ambari-common/src/main/unix/ambari-python-wrap</location>
  282. </source>
  283. </sources>
  284. </mapping>
  285. <mapping>
  286. <directory>/etc/ambari-server/conf</directory>
  287. <configuration>true</configuration>
  288. <sources>
  289. <source>
  290. <location>conf/unix/ambari.properties</location>
  291. </source>
  292. <source>
  293. <location>conf/unix/log4j.properties</location>
  294. </source>
  295. <source>
  296. <location>conf/unix/krb5JAASLogin.conf</location>
  297. </source>
  298. </sources>
  299. </mapping>
  300. <mapping>
  301. <directory>/var/lib/ambari-server/</directory>
  302. <filemode>700</filemode>
  303. <username>root</username>
  304. <groupname>root</groupname>
  305. <sources>
  306. <source>
  307. <location>conf/unix/ambari-env.sh</location>
  308. </source>
  309. </sources>
  310. </mapping>
  311. <mapping>
  312. <directory>/var/lib/ambari-server/</directory>
  313. <filemode>700</filemode>
  314. <username>root</username>
  315. <groupname>root</groupname>
  316. <sources>
  317. <source>
  318. <location>conf/unix/install-helper.sh</location>
  319. </source>
  320. </sources>
  321. </mapping>
  322. <mapping>
  323. <directory>/var/lib/ambari-server/keys</directory>
  324. <sources>
  325. <source>
  326. <location>conf/unix/ca.config</location>
  327. </source>
  328. </sources>
  329. </mapping>
  330. <mapping>
  331. <directory>/var/lib/ambari-server/keys/db</directory>
  332. <filemode>700</filemode>
  333. <username>root</username>
  334. <groupname>root</groupname>
  335. <sources>
  336. <source>
  337. <location>src/main/resources/db</location>
  338. </source>
  339. </sources>
  340. </mapping>
  341. <mapping>
  342. <directory>/var/run/ambari-server/bootstrap</directory>
  343. </mapping>
  344. <mapping>
  345. <directory>/var/log/ambari-server</directory>
  346. </mapping>
  347. <mapping>
  348. <directory>/var/lib/ambari-server/resources</directory>
  349. <sources>
  350. <source>
  351. <location>target/classes/Ambari-DDL-Postgres-CREATE.sql</location>
  352. </source>
  353. <source>
  354. <location>src/main/resources/Ambari-DDL-Postgres-DROP.sql</location>
  355. </source>
  356. <source>
  357. <location>target/classes/Ambari-DDL-Postgres-EMBEDDED-CREATE.sql</location>
  358. </source>
  359. <source>
  360. <location>src/main/resources/Ambari-DDL-Postgres-EMBEDDED-DROP.sql</location>
  361. </source>
  362. <source>
  363. <location>target/classes/Ambari-DDL-Oracle-CREATE.sql</location>
  364. </source>
  365. <source>
  366. <location>target/classes/Ambari-DDL-MySQL-CREATE.sql</location>
  367. </source>
  368. <source>
  369. <location>src/main/resources/Ambari-DDL-Oracle-DROP.sql</location>
  370. </source>
  371. <source>
  372. <location>src/main/resources/Ambari-DDL-MySQL-DROP.sql</location>
  373. </source>
  374. <source>
  375. <location>${project.build.directory}/DBConnectionVerification.jar</location>
  376. </source>
  377. <source>
  378. <location>src/main/resources/role_command_order.json</location>
  379. </source>
  380. </sources>
  381. </mapping>
  382. <mapping>
  383. <directory>/var/lib/ambari-server/resources/scripts</directory>
  384. <filemode>755</filemode>
  385. <sources>
  386. <source>
  387. <location>src/main/resources/scripts</location>
  388. </source>
  389. <source>
  390. <location>src/main/python/UpgradeHelper_HDP2.py</location>
  391. </source>
  392. </sources>
  393. </mapping>
  394. <mapping>
  395. <directory>/var/lib/ambari-server/resources/upgrade</directory>
  396. </mapping>
  397. <mapping>
  398. <directory>/var/lib/ambari-server/resources/upgrade/ddl</directory>
  399. <sources>
  400. <source>
  401. <location>src/main/resources/upgrade/ddl</location>
  402. </source>
  403. </sources>
  404. </mapping>
  405. <mapping>
  406. <directory>/var/lib/ambari-server/resources/upgrade/dml</directory>
  407. <sources>
  408. <source>
  409. <location>src/main/resources/upgrade/dml</location>
  410. </source>
  411. </sources>
  412. </mapping>
  413. <mapping>
  414. <directory>/var/lib/ambari-server/resources/stacks/HDP</directory>
  415. <sources>
  416. <source>
  417. <location>target/classes/stacks/HDP</location>
  418. </source>
  419. </sources>
  420. </mapping>
  421. <mapping>
  422. <directory>/usr/lib/python2.6/site-packages/ambari_server</directory>
  423. <filemode>755</filemode>
  424. <username>root</username>
  425. <groupname>root</groupname>
  426. <sources>
  427. <source>
  428. <location>src/main/python/ambari_server</location>
  429. </source>
  430. <source>
  431. <location>src/main/python/bootstrap.py</location>
  432. </source>
  433. <source>
  434. <location>src/main/python/setupAgent.py</location>
  435. </source>
  436. <source>
  437. <location>src/main/python/os_check_type.py</location>
  438. </source>
  439. </sources>
  440. </mapping>
  441. <mapping>
  442. <directory>/var/run/ambari-server</directory>
  443. </mapping>
  444. <mapping>
  445. <directory>/var/lib/ambari-server/resources</directory>
  446. <sources>
  447. <source>
  448. <location>../version</location>
  449. <filter>true</filter>
  450. </source>
  451. </sources>
  452. </mapping>
  453. <mapping>
  454. <directory>/var/lib/ambari-server/resources/custom_action_definitions</directory>
  455. <sources>
  456. <source>
  457. <location>src/main/resources/custom_action_definitions</location>
  458. </source>
  459. </sources>
  460. </mapping>
  461. <mapping>
  462. <!-- custom actions root-->
  463. <directory>/var/lib/ambari-server/resources/custom_actions</directory>
  464. <filemode>755</filemode>
  465. <username>root</username>
  466. <groupname>root</groupname>
  467. <sources>
  468. <source>
  469. <location>src/main/resources/custom_actions</location>
  470. </source>
  471. </sources>
  472. </mapping>
  473. </mappings>
  474. </configuration>
  475. </plugin>
  476. <plugin>
  477. <groupId>org.vafer</groupId>
  478. <artifactId>jdeb</artifactId>
  479. <version>1.0.1</version>
  480. <executions>
  481. <execution>
  482. <!-- unbinds rpm creation from maven lifecycle -->
  483. <phase>none</phase>
  484. <goals>
  485. <goal>jdeb</goal>
  486. </goals>
  487. </execution>
  488. </executions>
  489. <configuration>
  490. <controlDir>${basedir}/src/main/package/deb/control</controlDir>
  491. <deb>${basedir}/target/${artifactId}_${package-version}-${package-release}.deb</deb>
  492. <dataSet>
  493. <data>
  494. <type>template</type>
  495. <paths>
  496. <path>/usr/lib/ambari-server</path>
  497. <path>/var/run/ambari-server</path>
  498. <path>/var/run/ambari-server/bootstrap</path>
  499. <path>/var/log/ambari-server</path>
  500. <path>/var/lib/ambari-server/resources/upgrade</path>
  501. </paths>
  502. </data>
  503. <!-- TODO: should be included all subdirs, if exists-->
  504. <data>
  505. <src>${basedir}/../ambari-web/public</src>
  506. <type>directory</type>
  507. <mapper>
  508. <type>perm</type>
  509. <prefix>/usr/lib/ambari-server/web</prefix>
  510. </mapper>
  511. </data>
  512. <data>
  513. <src>${project.build.directory}/${project.artifactId}-${project.version}-dist/${project.artifactId}-${project.version}/lib</src>
  514. <type>directory</type>
  515. <mapper>
  516. <type>perm</type>
  517. <prefix>/usr/lib</prefix>
  518. </mapper>
  519. </data>
  520. <data>
  521. <src>src/main/python/ambari-server.py</src>
  522. <type>file</type>
  523. <mapper>
  524. <type>perm</type>
  525. <prefix>/usr/sbin</prefix>
  526. <user>root</user>
  527. <group>root</group>
  528. <filemode>755</filemode>
  529. </mapper>
  530. </data>
  531. <data>
  532. <src>src/main/python/ambari-server.py</src>
  533. <type>file</type>
  534. <mapper>
  535. <type>perm</type>
  536. <prefix>/usr/sbin</prefix>
  537. <user>root</user>
  538. <group>root</group>
  539. <filemode>755</filemode>
  540. </mapper>
  541. </data>
  542. <data>
  543. <src>../ambari-common/src/main/unix/ambari-python-wrap</src>
  544. <type>file</type>
  545. <mapper>
  546. <type>perm</type>
  547. <prefix>/var/lib/ambari-server</prefix>
  548. <user>root</user>
  549. <group>root</group>
  550. <filemode>755</filemode>
  551. </mapper>
  552. </data>
  553. <data>
  554. <src>${basedir}/target/ambari-server</src>
  555. <type>file</type>
  556. <mapper>
  557. <type>perm</type>
  558. <prefix>/usr/sbin</prefix>
  559. <user>root</user>
  560. <group>root</group>
  561. <filemode>755</filemode>
  562. </mapper>
  563. </data>
  564. <data>
  565. <src>conf/unix/ambari.properties</src>
  566. <type>file</type>
  567. <mapper>
  568. <type>perm</type>
  569. <prefix>/etc/ambari-server/conf</prefix>
  570. </mapper>
  571. </data>
  572. <data>
  573. <src>conf/unix/log4j.properties</src>
  574. <type>file</type>
  575. <mapper>
  576. <type>perm</type>
  577. <prefix>/etc/ambari-server/conf</prefix>
  578. </mapper>
  579. </data>
  580. <data>
  581. <src>conf/unix/krb5JAASLogin.conf</src>
  582. <type>file</type>
  583. <mapper>
  584. <type>perm</type>
  585. <prefix>/etc/ambari-server/conf</prefix>
  586. </mapper>
  587. </data>
  588. <!-- /q001 -->
  589. <data>
  590. <src>conf/unix/ambari-env.sh</src>
  591. <type>file</type>
  592. <mapper>
  593. <type>perm</type>
  594. <prefix>/var/lib/ambari-server/</prefix>
  595. <user>root</user>
  596. <group>root</group>
  597. <filemode>700</filemode>
  598. </mapper>
  599. </data>
  600. <data>
  601. <src>conf/unix/install-helper.sh</src>
  602. <type>file</type>
  603. <mapper>
  604. <type>perm</type>
  605. <prefix>/var/lib/ambari-server/</prefix>
  606. <user>root</user>
  607. <group>root</group>
  608. <filemode>700</filemode>
  609. </mapper>
  610. </data>
  611. <data>
  612. <src>conf/unix/ca.config</src>
  613. <type>file</type>
  614. <mapper>
  615. <type>perm</type>
  616. <prefix>/var/lib/ambari-server/keys</prefix>
  617. </mapper>
  618. </data>
  619. <data>
  620. <src>src/main/resources/db</src>
  621. <type>directory</type>
  622. <mapper>
  623. <type>perm</type>
  624. <prefix>/var/lib/ambari-server/keys/db</prefix>
  625. <user>root</user>
  626. <group>root</group>
  627. <filemode>700</filemode>
  628. </mapper>
  629. </data>
  630. <data>
  631. <src>target/classes/Ambari-DDL-Postgres-CREATE.sql</src>
  632. <type>file</type>
  633. <mapper>
  634. <type>perm</type>
  635. <prefix>/var/lib/ambari-server/resources</prefix>
  636. </mapper>
  637. </data>
  638. <data>
  639. <src>src/main/resources/Ambari-DDL-Postgres-DROP.sql</src>
  640. <type>file</type>
  641. <mapper>
  642. <type>perm</type>
  643. <prefix>/var/lib/ambari-server/resources</prefix>
  644. </mapper>
  645. </data>
  646. <data>
  647. <src>target/classes/Ambari-DDL-Postgres-EMBEDDED-CREATE.sql</src>
  648. <type>file</type>
  649. <mapper>
  650. <type>perm</type>
  651. <prefix>/var/lib/ambari-server/resources</prefix>
  652. </mapper>
  653. </data>
  654. <data>
  655. <src>src/main/resources/Ambari-DDL-Postgres-EMBEDDED-DROP.sql</src>
  656. <type>file</type>
  657. <mapper>
  658. <type>perm</type>
  659. <prefix>/var/lib/ambari-server/resources</prefix>
  660. </mapper>
  661. </data>
  662. <data>
  663. <src>target/classes/Ambari-DDL-Oracle-CREATE.sql</src>
  664. <type>file</type>
  665. <mapper>
  666. <type>perm</type>
  667. <prefix>/var/lib/ambari-server/resources</prefix>
  668. </mapper>
  669. </data>
  670. <data>
  671. <src>target/classes/Ambari-DDL-MySQL-CREATE.sql</src>
  672. <type>file</type>
  673. <mapper>
  674. <type>perm</type>
  675. <prefix>/var/lib/ambari-server/resources</prefix>
  676. </mapper>
  677. </data>
  678. <data>
  679. <src>src/main/resources/Ambari-DDL-Oracle-DROP.sql</src>
  680. <type>file</type>
  681. <mapper>
  682. <type>perm</type>
  683. <prefix>/var/lib/ambari-server/resources</prefix>
  684. </mapper>
  685. </data>
  686. <data>
  687. <src>src/main/resources/Ambari-DDL-MySQL-DROP.sql</src>
  688. <type>file</type>
  689. <mapper>
  690. <type>perm</type>
  691. <prefix>/var/lib/ambari-server/resources</prefix>
  692. </mapper>
  693. </data>
  694. <data>
  695. <src>${project.build.directory}/DBConnectionVerification.jar</src>
  696. <type>file</type>
  697. <mapper>
  698. <type>perm</type>
  699. <prefix>/var/lib/ambari-server/resources</prefix>
  700. </mapper>
  701. </data>
  702. <data>
  703. <src>src/main/resources/role_command_order.json</src>
  704. <type>file</type>
  705. <mapper>
  706. <type>perm</type>
  707. <prefix>/var/lib/ambari-server/resources</prefix>
  708. </mapper>
  709. </data>
  710. <data>
  711. <src>src/main/resources/scripts</src>
  712. <type>directory</type>
  713. <mapper>
  714. <type>perm</type>
  715. <prefix>/var/lib/ambari-server/resources/scripts</prefix>
  716. <filemode>755</filemode>
  717. </mapper>
  718. </data>
  719. <data>
  720. <src>src/main/python/UpgradeHelper_HDP2.py</src>
  721. <type>file</type>
  722. <mapper>
  723. <type>perm</type>
  724. <prefix>/var/lib/ambari-server/resources/scripts</prefix>
  725. <filemode>755</filemode>
  726. </mapper>
  727. </data>
  728. <data>
  729. <src>src/main/resources/upgrade/ddl</src>
  730. <type>directory</type>
  731. <mapper>
  732. <type>perm</type>
  733. <prefix>/var/lib/ambari-server/resources/upgrade/ddl</prefix>
  734. </mapper>
  735. </data>
  736. <data>
  737. <src>src/main/resources/upgrade/dml</src>
  738. <type>directory</type>
  739. <mapper>
  740. <type>perm</type>
  741. <prefix>/var/lib/ambari-server/resources/upgrade/dml</prefix>
  742. </mapper>
  743. </data>
  744. <data>
  745. <src>target/classes/stacks/HDP</src>
  746. <type>directory</type>
  747. <mapper>
  748. <type>perm</type>
  749. <prefix>/var/lib/ambari-server/resources/stacks/HDP</prefix>
  750. </mapper>
  751. </data>
  752. <data>
  753. <src>src/main/python/ambari_server</src>
  754. <type>directory</type>
  755. <mapper>
  756. <type>perm</type>
  757. <prefix>/usr/lib/python2.6/site-packages/ambari_server</prefix>
  758. <user>root</user>
  759. <group>root</group>
  760. <filemode>755</filemode>
  761. </mapper>
  762. </data>
  763. <data>
  764. <src>src/main/python/bootstrap.py</src>
  765. <type>file</type>
  766. <mapper>
  767. <type>perm</type>
  768. <prefix>/usr/lib/python2.6/site-packages/ambari_server</prefix>
  769. <user>root</user>
  770. <group>root</group>
  771. <filemode>755</filemode>
  772. </mapper>
  773. </data>
  774. <data>
  775. <src>src/main/python/setupAgent.py</src>
  776. <type>file</type>
  777. <mapper>
  778. <type>perm</type>
  779. <prefix>/usr/lib/python2.6/site-packages/ambari_server</prefix>
  780. <user>root</user>
  781. <group>root</group>
  782. <filemode>755</filemode>
  783. </mapper>
  784. </data>
  785. <data>
  786. <src>src/main/python/os_check_type.py</src>
  787. <type>file</type>
  788. <mapper>
  789. <type>perm</type>
  790. <prefix>/usr/lib/python2.6/site-packages/ambari_server</prefix>
  791. <user>root</user>
  792. <group>root</group>
  793. <filemode>755</filemode>
  794. </mapper>
  795. </data>
  796. <data>
  797. <src>${basedir}/target/version</src>
  798. <type>file</type>
  799. <mapper>
  800. <type>perm</type>
  801. <prefix>/var/lib/ambari-server/resources</prefix>
  802. </mapper>
  803. </data>
  804. <data>
  805. <src>src/main/resources/custom_action_definitions</src>
  806. <type>directory</type>
  807. <mapper>
  808. <type>perm</type>
  809. <prefix>/var/lib/ambari-server/resources/custom_action_definitions</prefix>
  810. </mapper>
  811. </data>
  812. <data>
  813. <src>src/main/resources/custom_actions</src>
  814. <type>directory</type>
  815. <mapper>
  816. <type>perm</type>
  817. <prefix>/var/lib/ambari-server/resources/custom_actions</prefix>
  818. <user>root</user>
  819. <group>root</group>
  820. <filemode>755</filemode>
  821. </mapper>
  822. </data>
  823. <data>
  824. <src>
  825. ${project.basedir}/../ambari-common/src/main/python/common_functions
  826. </src>
  827. <type>directory</type>
  828. <mapper>
  829. <type>perm</type>
  830. <prefix>${common_functions.install.dir}</prefix>
  831. <filemode>755</filemode>
  832. <user>root</user>
  833. <group>root</group>
  834. </mapper>
  835. </data>
  836. </dataSet>
  837. </configuration>
  838. </plugin>
  839. <plugin>
  840. <groupId>org.codehaus.mojo</groupId>
  841. <artifactId>findbugs-maven-plugin</artifactId>
  842. <version>2.5.2</version>
  843. <configuration>
  844. <failOnError>false</failOnError>
  845. </configuration>
  846. <executions>
  847. <execution>
  848. <phase>verify</phase>
  849. <goals>
  850. <goal>check</goal>
  851. </goals>
  852. </execution>
  853. </executions>
  854. </plugin>
  855. <plugin>
  856. <groupId>org.codehaus.mojo</groupId>
  857. <artifactId>exec-maven-plugin</artifactId>
  858. <version>1.2</version>
  859. <executions>
  860. <execution>
  861. <configuration>
  862. <executable>${project.basedir}/../ambari-common/src/main/unix/ambari-python-wrap</executable>
  863. <workingDirectory>src/test/python</workingDirectory>
  864. <arguments>
  865. <argument>unitTests.py</argument>
  866. <argument>${custom.tests}</argument>
  867. </arguments>
  868. <environmentVariables>
  869. <PYTHONPATH>${project.basedir}/../ambari-agent/src/main/python:${project.basedir}/../ambari-common/src/main/python/jinja2:${project.basedir}/../ambari-common/src/main/python:${project.basedir}/../ambari-common/src/main/python/common_functions:${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>
  870. </environmentVariables>
  871. <skip>${skipTests}</skip>
  872. </configuration>
  873. <id>python-test</id>
  874. <phase>test</phase>
  875. <goals>
  876. <goal>exec</goal>
  877. </goals>
  878. </execution>
  879. </executions>
  880. </plugin>
  881. <plugin>
  882. <groupId>com.atlassian.maven.plugins</groupId>
  883. <artifactId>maven-clover2-plugin</artifactId>
  884. <version>3.1.11</version>
  885. <!-- <configuration> <licenseLocation>/path/to/clover.license</licenseLocation>
  886. </configuration> -->
  887. </plugin>
  888. <plugin>
  889. <groupId>org.codehaus.mojo</groupId>
  890. <artifactId>buildnumber-maven-plugin</artifactId>
  891. <version>${buildnumber-maven-plugin-version}</version>
  892. <configuration>
  893. <urlScm>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-ambari.git</urlScm>
  894. </configuration>
  895. <executions>
  896. <execution>
  897. <phase>validate</phase>
  898. <goals>
  899. <goal>create</goal>
  900. </goals>
  901. </execution>
  902. </executions>
  903. </plugin>
  904. <plugin>
  905. <groupId>org.apache.maven.plugins</groupId>
  906. <artifactId>maven-antrun-plugin</artifactId>
  907. <version>1.7</version>
  908. <executions>
  909. <execution>
  910. <phase>package</phase>
  911. <configuration>
  912. <tasks>
  913. <jar destfile="target/DBConnectionVerification.jar">
  914. <fileset dir="${basedir}/target/classes/"
  915. includes="**/DBConnectionVerification.class" />
  916. <manifest>
  917. <attribute name="Main-Class"
  918. value="org.apache.ambari.server.DBConnectionVerification" />
  919. </manifest>
  920. </jar>
  921. </tasks>
  922. </configuration>
  923. <goals>
  924. <goal>run</goal>
  925. </goals>
  926. </execution>
  927. </executions>
  928. </plugin>
  929. </plugins>
  930. <resources>
  931. <resource>
  932. <directory>src/main/resources</directory>
  933. <filtering>true</filtering>
  934. <excludes>
  935. <exclude>stacks/**</exclude>
  936. </excludes>
  937. </resource>
  938. <resource>
  939. <directory>src/main/resources</directory>
  940. <filtering>false</filtering>
  941. <includes>
  942. <include>stacks/**</include>
  943. </includes>
  944. </resource>
  945. </resources>
  946. </build>
  947. <profiles>
  948. <profile>
  949. <id>replaceurl</id>
  950. <build>
  951. <plugins>
  952. <plugin>
  953. <groupId>org.apache.maven.plugins</groupId>
  954. <artifactId>maven-antrun-plugin</artifactId>
  955. <version>1.7</version>
  956. <executions>
  957. <execution>
  958. <id>set-hdp-url-classes</id>
  959. <phase>process-classes</phase>
  960. <goals>
  961. <goal>run</goal>
  962. </goals>
  963. <configuration>
  964. <target name="ambari-server-compile">
  965. <exec dir="${basedir}" executable="bash"
  966. failonerror="true">
  967. <arg value="${basedir}/set-hdp-repo-url.sh" />
  968. <arg value="${hdpUrlForCentos6}" />
  969. <arg value="${hdpLatestUrl}" />
  970. </exec>
  971. </target>
  972. </configuration>
  973. </execution>
  974. <execution>
  975. <id>set-hdp-url-packages</id>
  976. <phase>package</phase>
  977. <goals>
  978. <goal>run</goal>
  979. </goals>
  980. <configuration>
  981. <target name="ambari-server-compile">
  982. <exec dir="${basedir}" executable="bash"
  983. failonerror="true">
  984. <arg value="${basedir}/set-hdp-repo-url.sh" />
  985. <arg value="${hdpUrlForCentos6}" />
  986. <arg value="${hdpLatestUrl}" />
  987. <arg
  988. value="${project.build.directory}/ambari-server-${project.version}-dist/ambari-server-${project.version}" />
  989. </exec>
  990. </target>
  991. </configuration>
  992. </execution>
  993. </executions>
  994. </plugin>
  995. </plugins>
  996. </build>
  997. </profile>
  998. </profiles>
  999. <dependencies>
  1000. <dependency>
  1001. <groupId>${pom.groupId}</groupId>
  1002. <artifactId>ambari-views</artifactId>
  1003. <version>${project.version}</version>
  1004. </dependency>
  1005. <dependency>
  1006. <groupId>commons-io</groupId>
  1007. <artifactId>commons-io</artifactId>
  1008. </dependency>
  1009. <dependency>
  1010. <groupId>com.google.inject.extensions</groupId>
  1011. <artifactId>guice-assistedinject</artifactId>
  1012. </dependency>
  1013. <dependency>
  1014. <groupId>com.google.inject.extensions</groupId>
  1015. <artifactId>guice-persist</artifactId>
  1016. </dependency>
  1017. <dependency>
  1018. <groupId>com.google.inject.extensions</groupId>
  1019. <artifactId>guice-servlet</artifactId>
  1020. </dependency>
  1021. <dependency>
  1022. <groupId>com.google.inject.extensions</groupId>
  1023. <artifactId>guice-multibindings</artifactId>
  1024. <version>3.0</version>
  1025. </dependency>
  1026. <dependency>
  1027. <groupId>org.apache.derby</groupId>
  1028. <artifactId>derby</artifactId>
  1029. </dependency>
  1030. <dependency>
  1031. <groupId>org.springframework.security</groupId>
  1032. <artifactId>spring-security-core</artifactId>
  1033. </dependency>
  1034. <dependency>
  1035. <groupId>org.springframework.security</groupId>
  1036. <artifactId>spring-security-config</artifactId>
  1037. </dependency>
  1038. <dependency>
  1039. <groupId>org.springframework.security</groupId>
  1040. <artifactId>spring-security-web</artifactId>
  1041. </dependency>
  1042. <dependency>
  1043. <groupId>org.springframework</groupId>
  1044. <artifactId>spring-mock</artifactId>
  1045. <scope>test</scope>
  1046. </dependency>
  1047. <dependency>
  1048. <groupId>org.springframework.security</groupId>
  1049. <artifactId>spring-security-ldap</artifactId>
  1050. </dependency>
  1051. <dependency>
  1052. <groupId>org.springframework.ldap</groupId>
  1053. <artifactId>spring-ldap-core</artifactId>
  1054. </dependency>
  1055. <dependency>
  1056. <groupId>org.apache.directory.server</groupId>
  1057. <artifactId>apacheds-core</artifactId>
  1058. </dependency>
  1059. <dependency>
  1060. <groupId>org.apache.directory.server</groupId>
  1061. <artifactId>apacheds-protocol-ldap</artifactId>
  1062. </dependency>
  1063. <dependency>
  1064. <groupId>org.apache.directory.shared</groupId>
  1065. <artifactId>shared-ldap</artifactId>
  1066. </dependency>
  1067. <dependency>
  1068. <groupId>org.slf4j</groupId>
  1069. <artifactId>slf4j-api</artifactId>
  1070. </dependency>
  1071. <dependency>
  1072. <groupId>org.slf4j</groupId>
  1073. <artifactId>slf4j-log4j12</artifactId>
  1074. </dependency>
  1075. <dependency>
  1076. <groupId>log4j</groupId>
  1077. <artifactId>log4j</artifactId>
  1078. </dependency>
  1079. <dependency>
  1080. <groupId>org.eclipse.persistence</groupId>
  1081. <artifactId>eclipselink</artifactId>
  1082. </dependency>
  1083. <dependency>
  1084. <groupId>org.mockito</groupId>
  1085. <artifactId>mockito-core</artifactId>
  1086. <scope>test</scope>
  1087. </dependency>
  1088. <dependency>
  1089. <groupId>org.eclipse.jetty</groupId>
  1090. <artifactId>jetty-security</artifactId>
  1091. </dependency>
  1092. <dependency>
  1093. <groupId>org.eclipse.jetty</groupId>
  1094. <artifactId>jetty-servlet</artifactId>
  1095. </dependency>
  1096. <dependency>
  1097. <groupId>org.eclipse.jetty</groupId>
  1098. <artifactId>jetty-webapp</artifactId>
  1099. </dependency>
  1100. <dependency>
  1101. <groupId>org.eclipse.jetty</groupId>
  1102. <artifactId>jetty-server</artifactId>
  1103. </dependency>
  1104. <dependency>
  1105. <groupId>commons-logging</groupId>
  1106. <artifactId>commons-logging</artifactId>
  1107. </dependency>
  1108. <dependency>
  1109. <groupId>commons-codec</groupId>
  1110. <artifactId>commons-codec</artifactId>
  1111. </dependency>
  1112. <dependency>
  1113. <groupId>commons-lang</groupId>
  1114. <artifactId>commons-lang</artifactId>
  1115. </dependency>
  1116. <dependency>
  1117. <groupId>commons-httpclient</groupId>
  1118. <artifactId>commons-httpclient</artifactId>
  1119. </dependency>
  1120. <dependency>
  1121. <groupId>commons-net</groupId>
  1122. <artifactId>commons-net</artifactId>
  1123. <version>1.4.1</version>
  1124. </dependency>
  1125. <dependency>
  1126. <groupId>javax.servlet</groupId>
  1127. <artifactId>servlet-api</artifactId>
  1128. </dependency>
  1129. <dependency>
  1130. <groupId>com.sun.jersey</groupId>
  1131. <artifactId>jersey-json</artifactId>
  1132. <exclusions>
  1133. <exclusion>
  1134. <groupId>org.codehaus.jackson</groupId>
  1135. <artifactId>jackson-xc</artifactId>
  1136. </exclusion>
  1137. <exclusion>
  1138. <groupId>org.codehaus.jettison</groupId>
  1139. <artifactId>jettison</artifactId>
  1140. </exclusion>
  1141. <exclusion>
  1142. <groupId>org.codehaus.jackson</groupId>
  1143. <artifactId>jackson-mapper-asl</artifactId>
  1144. </exclusion>
  1145. </exclusions>
  1146. </dependency>
  1147. <dependency>
  1148. <groupId>com.sun.jersey</groupId>
  1149. <artifactId>jersey-server</artifactId>
  1150. </dependency>
  1151. <dependency>
  1152. <groupId>com.sun.jersey</groupId>
  1153. <artifactId>jersey-client</artifactId>
  1154. </dependency>
  1155. <dependency>
  1156. <groupId>com.sun.jersey.contribs</groupId>
  1157. <artifactId>jersey-multipart</artifactId>
  1158. </dependency>
  1159. <dependency>
  1160. <groupId>com.sun.jersey.contribs</groupId>
  1161. <artifactId>jersey-guice</artifactId>
  1162. </dependency>
  1163. <dependency>
  1164. <groupId>org.codehaus.jackson</groupId>
  1165. <artifactId>jackson-mapper-asl</artifactId>
  1166. <version>1.9.2</version>
  1167. </dependency>
  1168. <dependency>
  1169. <groupId>org.codehaus.jackson</groupId>
  1170. <artifactId>jackson-core-asl</artifactId>
  1171. </dependency>
  1172. <dependency>
  1173. <groupId>org.codehaus.jackson</groupId>
  1174. <artifactId>jackson-jaxrs</artifactId>
  1175. </dependency>
  1176. <dependency>
  1177. <groupId>org.codehaus.jackson</groupId>
  1178. <artifactId>jackson-xc</artifactId>
  1179. </dependency>
  1180. <dependency>
  1181. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  1182. <artifactId>jersey-test-framework-core</artifactId>
  1183. <scope>test</scope>
  1184. </dependency>
  1185. <dependency>
  1186. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  1187. <artifactId>jersey-test-framework-grizzly2</artifactId>
  1188. <scope>test</scope>
  1189. </dependency>
  1190. <dependency>
  1191. <groupId>org.codehaus.jettison</groupId>
  1192. <artifactId>jettison</artifactId>
  1193. <scope>test</scope>
  1194. </dependency>
  1195. <dependency>
  1196. <groupId>junit</groupId>
  1197. <artifactId>junit</artifactId>
  1198. <scope>test</scope>
  1199. </dependency>
  1200. <dependency>
  1201. <groupId>org.easymock</groupId>
  1202. <artifactId>easymock</artifactId>
  1203. <version>3.1</version>
  1204. <scope>test</scope>
  1205. </dependency>
  1206. <dependency>
  1207. <groupId>org.powermock</groupId>
  1208. <artifactId>powermock-core</artifactId>
  1209. <version>1.5</version>
  1210. <scope>test</scope>
  1211. </dependency>
  1212. <dependency>
  1213. <groupId>org.powermock</groupId>
  1214. <artifactId>powermock-reflect</artifactId>
  1215. <version>1.5</version>
  1216. <scope>test</scope>
  1217. </dependency>
  1218. <dependency>
  1219. <groupId>org.powermock</groupId>
  1220. <artifactId>powermock-api-easymock</artifactId>
  1221. <version>1.5</version>
  1222. <scope>test</scope>
  1223. </dependency>
  1224. <dependency>
  1225. <groupId>org.powermock</groupId>
  1226. <artifactId>powermock-module-junit4</artifactId>
  1227. <version>1.5</version>
  1228. <scope>test</scope>
  1229. </dependency>
  1230. <dependency>
  1231. <groupId>org.objenesis</groupId>
  1232. <artifactId>objenesis-tck</artifactId>
  1233. <version>1.2</version>
  1234. </dependency>
  1235. <dependency>
  1236. <groupId>cglib</groupId>
  1237. <artifactId>cglib</artifactId>
  1238. <version>2.2.2</version>
  1239. </dependency>
  1240. <dependency>
  1241. <groupId>asm</groupId>
  1242. <artifactId>asm</artifactId>
  1243. <version>3.3.1</version>
  1244. </dependency>
  1245. <dependency>
  1246. <groupId>com.google.inject</groupId>
  1247. <artifactId>guice</artifactId>
  1248. <version>3.0</version>
  1249. </dependency>
  1250. <dependency>
  1251. <groupId>com.google.code.gson</groupId>
  1252. <artifactId>gson</artifactId>
  1253. <version>2.2.2</version>
  1254. </dependency>
  1255. <dependency>
  1256. <groupId>org.postgresql</groupId>
  1257. <artifactId>postgresql</artifactId>
  1258. <version>9.3-1101-jdbc4</version>
  1259. </dependency>
  1260. <dependency>
  1261. <groupId>org.apache.httpcomponents</groupId>
  1262. <artifactId>httpclient</artifactId>
  1263. <version>4.2.5</version>
  1264. </dependency>
  1265. <dependency>
  1266. <groupId>com.google.guava</groupId>
  1267. <artifactId>guava</artifactId>
  1268. <version>14.0.1</version>
  1269. </dependency>
  1270. <dependency>
  1271. <groupId>com.google.code.findbugs</groupId>
  1272. <artifactId>jsr305</artifactId>
  1273. <version>1.3.9</version>
  1274. </dependency>
  1275. <dependency>
  1276. <groupId>org.quartz-scheduler</groupId>
  1277. <artifactId>quartz</artifactId>
  1278. <version>2.2.1</version>
  1279. </dependency>
  1280. <dependency>
  1281. <groupId>org.quartz-scheduler</groupId>
  1282. <artifactId>quartz-jobs</artifactId>
  1283. <version>2.2.1</version>
  1284. </dependency>
  1285. </dependencies>
  1286. <!--<reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
  1287. <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> </plugin>
  1288. </plugins> </reporting> -->
  1289. </project>