pom.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  17. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  18. <parent>
  19. <artifactId>ambari-logsearch</artifactId>
  20. <groupId>org.apache.ambari</groupId>
  21. <version>2.5.0.0.0</version>
  22. </parent>
  23. <modelVersion>4.0.0</modelVersion>
  24. <groupId>org.apache.ambari</groupId>
  25. <artifactId>ambari-logsearch-portal</artifactId>
  26. <packaging>jar</packaging>
  27. <version>2.5.0.0.0</version>
  28. <url>http://maven.apache.org</url>
  29. <name>Ambari Logsearch Portal</name>
  30. <properties>
  31. <spring.version>4.2.5.RELEASE</spring.version>
  32. <spring.security.version>4.0.4.RELEASE</spring.security.version>
  33. <spring.ldap.version>2.0.4.RELEASE</spring.ldap.version>
  34. <jersey.version>2.23.2</jersey.version>
  35. <jetty-version>9.2.11.v20150529</jetty-version>
  36. <swagger.version>1.5.8</swagger.version>
  37. <spring-data-solr.version>2.0.2.RELEASE</spring-data-solr.version>
  38. <jjwt.version>0.6.0</jjwt.version>
  39. </properties>
  40. <profiles>
  41. <!-- Dev Profile Start -->
  42. <profile>
  43. <id>dev</id>
  44. <activation>
  45. <activeByDefault>true</activeByDefault>
  46. </activation>
  47. <build>
  48. <finalName>LogSearch</finalName>
  49. <pluginManagement>
  50. <plugins>
  51. <plugin>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.0</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-dependency-plugin</artifactId>
  57. <version>2.8</version>
  58. </plugin>
  59. </plugins>
  60. </pluginManagement>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.0</version>
  66. <configuration>
  67. <source>1.7</source>
  68. <target>1.7</target>
  69. </configuration>
  70. </plugin>
  71. <!-- copying resources UI -->
  72. <plugin>
  73. <artifactId>maven-resources-plugin</artifactId>
  74. <version>2.6</version>
  75. <executions>
  76. <execution>
  77. <id>copy-resources</id>
  78. <phase>process-resources</phase>
  79. <goals>
  80. <goal>copy-resources</goal>
  81. </goals>
  82. <configuration>
  83. <outputDirectory>${basedir}/target/classes/webapps/app</outputDirectory>
  84. <resources>
  85. <resource>
  86. <directory>src/main/webapp</directory>
  87. <filtering>false</filtering>
  88. </resource>
  89. </resources>
  90. </configuration>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <!-- Exec main class plugin -->
  95. <plugin>
  96. <groupId>org.codehaus.mojo</groupId>
  97. <artifactId>exec-maven-plugin</artifactId>
  98. <version>1.2.1</version>
  99. <executions>
  100. <execution>
  101. <goals>
  102. <goal>java</goal>
  103. </goals>
  104. </execution>
  105. </executions>
  106. <configuration>
  107. <mainClass>org.apache.ambari.logsearch.LogSearch</mainClass>
  108. <!-- <arguments> <argument></argument> </arguments> -->
  109. </configuration>
  110. </plugin>
  111. <!-- copy-dependencies -->
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-dependency-plugin</artifactId>
  115. <version>2.8</version>
  116. <executions>
  117. <execution>
  118. <id>copy-dependencies</id>
  119. <phase>package</phase>
  120. <goals>
  121. <goal>copy-dependencies</goal>
  122. </goals>
  123. <configuration>
  124. <artifactItems>*</artifactItems>
  125. <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
  126. <outputDirectory>${basedir}/target/libs</outputDirectory>
  127. <overWriteReleases>false</overWriteReleases>
  128. <overWriteSnapshots>false</overWriteSnapshots>
  129. <overWriteIfNewer>true</overWriteIfNewer>
  130. </configuration>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. <!-- - -->
  135. <!-- ant pacakge -->
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-antrun-plugin</artifactId>
  139. <version>1.7</version>
  140. <executions>
  141. <execution>
  142. <phase>package</phase>
  143. <configuration>
  144. <target>
  145. <!-- <taskdef resource="build.properties" classpathref="maven.plugin.classpath" /> -->
  146. <ant antfile="build.xml">
  147. <target name="package"/>
  148. </ant>
  149. </target>
  150. </configuration>
  151. <goals>
  152. <goal>run</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.rat</groupId>
  159. <artifactId>apache-rat-plugin</artifactId>
  160. <configuration>
  161. <excludes>
  162. <exclude>src/main/webapp/libs/**/*</exclude>
  163. <exclude>production/r.js</exclude>
  164. <exclude>src/main/configsets/hadoop_logs/conf/managed-schema</exclude>
  165. <exclude>src/main/webapp/robots.txt</exclude>
  166. <exclude>src/main/webapp/styles/animate.css</exclude>
  167. <exclude>**/*.json</exclude>
  168. <exclude>src/main/webapp/styles/visualsearch.css</exclude>
  169. <exclude>**/*.log</exclude>
  170. </excludes>
  171. </configuration>
  172. <executions>
  173. <execution>
  174. <phase>test</phase>
  175. <goals>
  176. <goal>check</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. <!-- /ant package -->
  182. </plugins>
  183. </build>
  184. </profile>
  185. <!-- Dev Profile End -->
  186. <!-- Production Profile Start -->
  187. <profile>
  188. <id>production</id>
  189. <build>
  190. <finalName>LogSearch</finalName>
  191. <pluginManagement>
  192. <plugins>
  193. <plugin>
  194. <artifactId>maven-compiler-plugin</artifactId>
  195. <version>3.0</version>
  196. </plugin>
  197. <plugin>
  198. <artifactId>maven-dependency-plugin</artifactId>
  199. <version>2.8</version>
  200. </plugin>
  201. </plugins>
  202. </pluginManagement>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-compiler-plugin</artifactId>
  207. <version>3.0</version>
  208. <configuration>
  209. <source>1.7</source>
  210. <target>1.7</target>
  211. </configuration>
  212. </plugin>
  213. <!-- copying resources UI -->
  214. <plugin>
  215. <artifactId>maven-resources-plugin</artifactId>
  216. <version>2.6</version>
  217. <executions>
  218. <execution>
  219. <id>copy-resources</id>
  220. <phase>process-resources</phase>
  221. <goals>
  222. <goal>copy-resources</goal>
  223. </goals>
  224. <configuration>
  225. <outputDirectory>${basedir}/target/classes/webapps/app</outputDirectory>
  226. <resources>
  227. <resource>
  228. <directory>target/webapp-build</directory>
  229. <filtering>false</filtering>
  230. </resource>
  231. </resources>
  232. </configuration>
  233. </execution>
  234. </executions>
  235. </plugin>
  236. <!-- Exec main class plugin -->
  237. <plugin>
  238. <groupId>org.codehaus.mojo</groupId>
  239. <artifactId>exec-maven-plugin</artifactId>
  240. <version>1.2.1</version>
  241. <executions>
  242. <execution>
  243. <goals>
  244. <goal>java</goal>
  245. </goals>
  246. </execution>
  247. </executions>
  248. <configuration>
  249. <mainClass>org.apache.ambari.logsearch.LogSearch</mainClass>
  250. <!-- <arguments> <argument></argument> </arguments> -->
  251. </configuration>
  252. </plugin>
  253. <!-- copy-dependencies -->
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-dependency-plugin</artifactId>
  257. <version>2.8</version>
  258. <executions>
  259. <execution>
  260. <id>copy-dependencies</id>
  261. <phase>package</phase>
  262. <goals>
  263. <goal>copy-dependencies</goal>
  264. </goals>
  265. <configuration>
  266. <artifactItems>*</artifactItems>
  267. <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
  268. <outputDirectory>${basedir}/target/libs</outputDirectory>
  269. <overWriteReleases>false</overWriteReleases>
  270. <overWriteSnapshots>false</overWriteSnapshots>
  271. <overWriteIfNewer>true</overWriteIfNewer>
  272. </configuration>
  273. </execution>
  274. </executions>
  275. </plugin>
  276. <!-- - -->
  277. <!-- ant pacakge -->
  278. <plugin>
  279. <groupId>org.apache.maven.plugins</groupId>
  280. <artifactId>maven-antrun-plugin</artifactId>
  281. <version>1.7</version>
  282. <executions>
  283. <execution>
  284. <phase>package</phase>
  285. <configuration>
  286. <target>
  287. <!-- <taskdef resource="build.properties" classpathref="maven.plugin.classpath" /> -->
  288. <ant antfile="build.xml">
  289. <target name="package"/>
  290. </ant>
  291. </target>
  292. </configuration>
  293. <goals>
  294. <goal>run</goal>
  295. </goals>
  296. </execution>
  297. <!-- <execution>
  298. <id>Packag Install</id>
  299. <phase>generate-resources</phase>
  300. <configuration>
  301. <target>
  302. <exec executable="npm">
  303. <arg value="install" />
  304. </exec>
  305. </target>
  306. </configuration>
  307. <goals>
  308. <goal>run</goal>
  309. </goals>
  310. </execution>
  311. <execution>
  312. <id>Js Packaging</id>
  313. <phase>generate-resources</phase>
  314. <configuration>
  315. <target>
  316. <exec executable="gulp">
  317. <arg value="minify-css" />
  318. </exec>
  319. </target>
  320. </configuration>
  321. <goals>
  322. <goal>run</goal>
  323. </goals>
  324. </execution> -->
  325. </executions>
  326. </plugin>
  327. <plugin>
  328. <groupId>org.apache.rat</groupId>
  329. <artifactId>apache-rat-plugin</artifactId>
  330. <configuration>
  331. <excludes>
  332. <exclude>**/*</exclude>
  333. </excludes>
  334. </configuration>
  335. <executions>
  336. <execution>
  337. <phase>test</phase>
  338. <goals>
  339. <goal>check</goal>
  340. </goals>
  341. </execution>
  342. </executions>
  343. </plugin>
  344. </plugins>
  345. </build>
  346. </profile>
  347. <!-- Production Profile End -->
  348. <profile>
  349. <id>skipMinify</id>
  350. <activation>
  351. <activeByDefault>false</activeByDefault>
  352. </activation>
  353. <build>
  354. <finalName>LogSearch</finalName>
  355. <pluginManagement>
  356. <plugins>
  357. <plugin>
  358. <artifactId>maven-compiler-plugin</artifactId>
  359. <version>3.0</version>
  360. </plugin>
  361. <plugin>
  362. <artifactId>maven-dependency-plugin</artifactId>
  363. <version>2.8</version>
  364. </plugin>
  365. </plugins>
  366. </pluginManagement>
  367. <plugins>
  368. <plugin>
  369. <groupId>org.apache.maven.plugins</groupId>
  370. <artifactId>maven-compiler-plugin</artifactId>
  371. <version>3.0</version>
  372. <configuration>
  373. <source>1.7</source>
  374. <target>1.7</target>
  375. </configuration>
  376. </plugin>
  377. <!-- copying resources UI -->
  378. <plugin>
  379. <artifactId>maven-resources-plugin</artifactId>
  380. <version>2.6</version>
  381. <executions>
  382. <execution>
  383. <id>copy-resources</id>
  384. <phase>process-resources</phase>
  385. <goals>
  386. <goal>copy-resources</goal>
  387. </goals>
  388. <configuration>
  389. <outputDirectory>${basedir}/target/classes/webapps/app</outputDirectory>
  390. <resources>
  391. <resource>
  392. <directory>target/webapp-build</directory>
  393. <filtering>false</filtering>
  394. </resource>
  395. </resources>
  396. </configuration>
  397. </execution>
  398. </executions>
  399. </plugin>
  400. <!-- Exec main class plugin -->
  401. <plugin>
  402. <groupId>org.codehaus.mojo</groupId>
  403. <artifactId>exec-maven-plugin</artifactId>
  404. <version>1.2.1</version>
  405. <executions>
  406. <execution>
  407. <goals>
  408. <goal>java</goal>
  409. </goals>
  410. </execution>
  411. </executions>
  412. <configuration>
  413. <mainClass>org.apache.ambari.logsearch.LogSearch</mainClass>
  414. <!-- <arguments> <argument></argument> </arguments> -->
  415. </configuration>
  416. </plugin>
  417. <!-- copy-dependencies -->
  418. <plugin>
  419. <groupId>org.apache.maven.plugins</groupId>
  420. <artifactId>maven-dependency-plugin</artifactId>
  421. <version>2.8</version>
  422. <executions>
  423. <execution>
  424. <id>copy-dependencies</id>
  425. <phase>package</phase>
  426. <goals>
  427. <goal>copy-dependencies</goal>
  428. </goals>
  429. <configuration>
  430. <artifactItems>*</artifactItems>
  431. <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
  432. <outputDirectory>${basedir}/target/libs</outputDirectory>
  433. <overWriteReleases>false</overWriteReleases>
  434. <overWriteSnapshots>false</overWriteSnapshots>
  435. <overWriteIfNewer>true</overWriteIfNewer>
  436. </configuration>
  437. </execution>
  438. </executions>
  439. </plugin>
  440. <!-- - -->
  441. <!-- ant pacakge -->
  442. <plugin>
  443. <groupId>org.apache.maven.plugins</groupId>
  444. <artifactId>maven-antrun-plugin</artifactId>
  445. <version>1.7</version>
  446. <executions>
  447. <execution>
  448. <phase>package</phase>
  449. <configuration>
  450. <target>
  451. <!-- <taskdef resource="build.properties" classpathref="maven.plugin.classpath"
  452. /> -->
  453. <ant antfile="build.xml">
  454. <target name="package"/>
  455. </ant>
  456. </target>
  457. </configuration>
  458. <goals>
  459. <goal>run</goal>
  460. </goals>
  461. </execution>
  462. </executions>
  463. </plugin>
  464. </plugins>
  465. </build>
  466. </profile>
  467. </profiles>
  468. <dependencies>
  469. <dependency>
  470. <groupId>junit</groupId>
  471. <artifactId>junit</artifactId>
  472. <scope>test</scope>
  473. </dependency>
  474. <dependency>
  475. <groupId>org.easymock</groupId>
  476. <artifactId>easymock</artifactId>
  477. <version>3.4</version>
  478. <scope>test</scope>
  479. </dependency>
  480. <!-- Spring dependencies -->
  481. <dependency>
  482. <groupId>org.springframework</groupId>
  483. <artifactId>spring-beans</artifactId>
  484. <version>${spring.version}</version>
  485. </dependency>
  486. <dependency>
  487. <groupId>org.springframework</groupId>
  488. <artifactId>spring-context</artifactId>
  489. <version>${spring.version}</version>
  490. </dependency>
  491. <dependency>
  492. <groupId>org.springframework</groupId>
  493. <artifactId>spring-test</artifactId>
  494. <version>${spring.version}</version>
  495. </dependency>
  496. <!-- Spring Security -->
  497. <dependency>
  498. <groupId>org.springframework.security</groupId>
  499. <artifactId>spring-security-web</artifactId>
  500. <version>${spring.security.version}</version>
  501. </dependency>
  502. <dependency>
  503. <groupId>org.springframework.security</groupId>
  504. <artifactId>spring-security-core</artifactId>
  505. <version>${spring.security.version}</version>
  506. </dependency>
  507. <dependency>
  508. <groupId>org.springframework.security</groupId>
  509. <artifactId>spring-security-config</artifactId>
  510. <version>${spring.security.version}</version>
  511. </dependency>
  512. <dependency>
  513. <groupId>org.springframework.ldap</groupId>
  514. <artifactId>spring-ldap-core</artifactId>
  515. <version>${spring.ldap.version}</version>
  516. </dependency>
  517. <dependency>
  518. <groupId>org.springframework.security</groupId>
  519. <artifactId>spring-security-ldap</artifactId>
  520. <version>${spring.security.version}</version>
  521. </dependency>
  522. <dependency>
  523. <groupId>org.glassfish.jersey.ext</groupId>
  524. <artifactId>jersey-spring3</artifactId>
  525. <version>2.23.2</version>
  526. <exclusions>
  527. <exclusion>
  528. <groupId>org.springframework</groupId>
  529. <artifactId>*</artifactId>
  530. </exclusion>
  531. </exclusions>
  532. </dependency>
  533. <dependency>
  534. <groupId>org.glassfish.jersey.connectors</groupId>
  535. <artifactId>jersey-apache-connector</artifactId>
  536. <version>${jersey.version}</version>
  537. </dependency>
  538. <dependency>
  539. <groupId>org.glassfish.jersey.core</groupId>
  540. <artifactId>jersey-client</artifactId>
  541. <version>${jersey.version}</version>
  542. </dependency>
  543. <dependency>
  544. <groupId>org.glassfish.jersey.media</groupId>
  545. <artifactId>jersey-media-json-jettison</artifactId>
  546. <version>${jersey.version}</version>
  547. </dependency>
  548. <dependency>
  549. <groupId>org.glassfish.jersey.media</groupId>
  550. <artifactId>jersey-media-json-jackson</artifactId>
  551. <version>${jersey.version}</version>
  552. </dependency>
  553. <dependency>
  554. <groupId>org.glassfish.jersey.core</groupId>
  555. <artifactId>jersey-common</artifactId>
  556. <version>${jersey.version}</version>
  557. </dependency>
  558. <dependency>
  559. <groupId>javax.servlet</groupId>
  560. <artifactId>javax.servlet-api</artifactId>
  561. <version>3.1.0</version>
  562. </dependency>
  563. <dependency>
  564. <groupId>log4j</groupId>
  565. <artifactId>log4j</artifactId>
  566. <version>1.2.17</version>
  567. </dependency>
  568. <dependency>
  569. <groupId>org.apache.solr</groupId>
  570. <artifactId>solr-solrj</artifactId>
  571. <version>${solr.version}</version>
  572. </dependency>
  573. <dependency>
  574. <groupId>org.apache.solr</groupId>
  575. <artifactId>solr-core</artifactId>
  576. <version>${solr.version}</version>
  577. <exclusions>
  578. <exclusion>
  579. <groupId>*</groupId>
  580. <artifactId>*</artifactId>
  581. </exclusion>
  582. </exclusions>
  583. </dependency>
  584. <dependency>
  585. <groupId>org.apache.lucene</groupId>
  586. <artifactId>lucene-core</artifactId>
  587. <version>${solr.version}</version>
  588. </dependency>
  589. <dependency>
  590. <groupId>org.apache.lucene</groupId>
  591. <artifactId>lucene-analyzers-common</artifactId>
  592. <version>${solr.version}</version>
  593. </dependency>
  594. <!-- Hadoop -->
  595. <dependency>
  596. <groupId>org.apache.hadoop</groupId>
  597. <artifactId>hadoop-common</artifactId>
  598. <version>2.7.0</version>
  599. <exclusions>
  600. <exclusion>
  601. <groupId>javax.servlet</groupId>
  602. <artifactId>servlet-api</artifactId>
  603. </exclusion>
  604. <exclusion>
  605. <groupId>org.mortbay.jetty</groupId>
  606. <artifactId>jetty</artifactId>
  607. </exclusion>
  608. <exclusion>
  609. <groupId>org.mortbay.jetty</groupId>
  610. <artifactId>jetty-util</artifactId>
  611. </exclusion>
  612. <exclusion>
  613. <groupId>com.sun.jersey</groupId>
  614. <artifactId>jetty-util</artifactId>
  615. </exclusion>
  616. <exclusion>
  617. <groupId>com.sun.jersey</groupId>
  618. <artifactId>jersey-core</artifactId>
  619. </exclusion>
  620. <exclusion>
  621. <groupId>com.sun.jersey</groupId>
  622. <artifactId>jersey-json</artifactId>
  623. </exclusion>
  624. <exclusion>
  625. <groupId>com.sun.jersey</groupId>
  626. <artifactId>jersey-server</artifactId>
  627. </exclusion>
  628. </exclusions>
  629. </dependency>
  630. <dependency>
  631. <groupId>commons-io</groupId>
  632. <artifactId>commons-io</artifactId>
  633. <version>2.4</version>
  634. </dependency>
  635. <dependency>
  636. <groupId>org.apache.ambari</groupId>
  637. <artifactId>ambari-logsearch-appender</artifactId>
  638. <version>${project.version}</version>
  639. </dependency>
  640. <dependency>
  641. <groupId>org.apache.ambari</groupId>
  642. <artifactId>ambari-logsearch-solr-client</artifactId>
  643. <version>${project.version}</version>
  644. </dependency>
  645. <dependency>
  646. <groupId>org.apache.ambari</groupId>
  647. <artifactId>ambari-metrics-common</artifactId>
  648. <version>${project.version}</version>
  649. </dependency>
  650. <dependency>
  651. <groupId>commons-cli</groupId>
  652. <artifactId>commons-cli</artifactId>
  653. <version>1.3.1</version>
  654. </dependency>
  655. <dependency>
  656. <groupId>org.springframework.security.kerberos</groupId>
  657. <artifactId>spring-security-kerberos-core</artifactId>
  658. <version>1.0.1.RELEASE</version>
  659. </dependency>
  660. <dependency>
  661. <groupId>org.springframework.security.kerberos</groupId>
  662. <artifactId>spring-security-kerberos-web</artifactId>
  663. <version>1.0.1.RELEASE</version>
  664. </dependency>
  665. <dependency>
  666. <groupId>org.springframework.security.kerberos</groupId>
  667. <artifactId>spring-security-kerberos-client</artifactId>
  668. <version>1.0.1.RELEASE</version>
  669. </dependency>
  670. <dependency>
  671. <groupId>org.eclipse.jetty</groupId>
  672. <artifactId>jetty-security</artifactId>
  673. <version>${jetty-version}</version>
  674. </dependency>
  675. <dependency>
  676. <groupId>org.eclipse.jetty</groupId>
  677. <artifactId>jetty-server</artifactId>
  678. <version>${jetty-version}</version>
  679. </dependency>
  680. <dependency>
  681. <groupId>org.eclipse.jetty</groupId>
  682. <artifactId>jetty-servlet</artifactId>
  683. <version>${jetty-version}</version>
  684. </dependency>
  685. <dependency>
  686. <groupId>org.eclipse.jetty</groupId>
  687. <artifactId>jetty-servlets</artifactId>
  688. <version>${jetty-version}</version>
  689. </dependency>
  690. <dependency>
  691. <groupId>org.eclipse.jetty</groupId>
  692. <artifactId>jetty-util</artifactId>
  693. <version>${jetty-version}</version>
  694. </dependency>
  695. <dependency>
  696. <groupId>org.eclipse.jetty</groupId>
  697. <artifactId>jetty-webapp</artifactId>
  698. <version>${jetty-version}</version>
  699. <exclusions>
  700. <exclusion>
  701. <groupId>org.springframework</groupId>
  702. <artifactId>*</artifactId>
  703. </exclusion>
  704. </exclusions>
  705. </dependency>
  706. <dependency>
  707. <groupId>org.eclipse.jetty</groupId>
  708. <artifactId>jetty-annotations</artifactId>
  709. <version>${jetty-version}</version>
  710. <exclusions>
  711. <exclusion>
  712. <groupId>org.springframework</groupId>
  713. <artifactId>*</artifactId>
  714. </exclusion>
  715. </exclusions>
  716. </dependency>
  717. <dependency>
  718. <groupId>cglib</groupId>
  719. <artifactId>cglib</artifactId>
  720. <version>3.2.4</version>
  721. </dependency>
  722. <dependency>
  723. <groupId>io.swagger</groupId>
  724. <artifactId>swagger-annotations</artifactId>
  725. <version>${swagger.version}</version>
  726. </dependency>
  727. <dependency>
  728. <groupId>io.swagger</groupId>
  729. <artifactId>swagger-core</artifactId>
  730. <version>${swagger.version}</version>
  731. </dependency>
  732. <dependency>
  733. <groupId>io.swagger</groupId>
  734. <artifactId>swagger-jersey2-jaxrs</artifactId>
  735. <version>${swagger.version}</version>
  736. <exclusions>
  737. <exclusion>
  738. <groupId>javax.ws.rs</groupId>
  739. <artifactId>jsr311-api</artifactId>
  740. </exclusion>
  741. </exclusions>
  742. </dependency>
  743. <dependency>
  744. <groupId>io.swagger</groupId>
  745. <artifactId>swagger-models</artifactId>
  746. <version>${swagger.version}</version>
  747. </dependency>
  748. <dependency>
  749. <groupId>org.webjars</groupId>
  750. <artifactId>swagger-ui</artifactId>
  751. <version>2.1.0</version>
  752. </dependency>
  753. <dependency>
  754. <groupId>org.springframework.data</groupId>
  755. <artifactId>spring-data-solr</artifactId>
  756. <version>${spring-data-solr.version}</version>
  757. </dependency>
  758. <dependency>
  759. <groupId>org.springframework</groupId>
  760. <artifactId>spring-context-support</artifactId>
  761. <version>${spring.version}</version>
  762. </dependency>
  763. <dependency>
  764. <groupId>org.freemarker</groupId>
  765. <artifactId>freemarker</artifactId>
  766. <version>2.3.20</version>
  767. </dependency>
  768. <dependency>
  769. <groupId>io.jsonwebtoken</groupId>
  770. <artifactId>jjwt</artifactId>
  771. <version>${jjwt.version}</version>
  772. </dependency>
  773. </dependencies>
  774. </project>