pom.xml 26 KB

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