|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | | - *Licensed to the Indoqa Software Design und Beratung GmbH (Indoqa) under |
4 | | - *one or more contributor license agreements. See the NOTICE file distributed |
5 | | - *with this work for additional information regarding copyright ownership. |
6 | | - *Indoqa 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 | | - * |
10 | | - *http://www.apache.org/licenses/LICENSE-2.0 |
11 | | - * |
12 | | - *Unless required by applicable law or agreed to in writing, software |
13 | | - *distributed under the License is distributed on an "AS IS" BASIS, |
14 | | - *WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 | | - *See the License for the specific language governing permissions and |
16 | | - *limitations under the License. |
| 3 | + Licensed to the Indoqa Software Design und Beratung GmbH (Indoqa) under |
| 4 | + one or more contributor license agreements. See the NOTICE file distributed |
| 5 | + with this work for additional information regarding copyright ownership. |
| 6 | + Indoqa 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 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
17 | 17 | --> |
18 | | -<projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 18 | +<projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | +xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
19 | 20 |
|
20 | 21 | <modelVersion>4.0.0</modelVersion> |
21 | 22 | <packaging>jar</packaging> |
22 | 23 |
|
23 | 24 | <parent> |
24 | 25 | <groupId>com.indoqa</groupId> |
25 | 26 | <artifactId>indoqa-oss-parent</artifactId> |
26 | | - <version>4</version> |
27 | | - </parent> |
| 27 | + <version>16</version> |
| 28 | + </parent> |
28 | 29 |
|
29 | 30 | <groupId>com.indoqa.solr</groupId> |
30 | 31 | <artifactId>solr-facet-api</artifactId> |
31 | 32 | <version>0.2.4-SNAPSHOT</version> |
32 | | -
|
| 33 | + |
33 | 34 | <name>Indoqa Solr Facet API</name> |
34 | 35 | <url>https://github.com/Indoqa/solr-facet-api</url> |
35 | 36 | <description>Java API to use Solr Facet API (Solr 5.1 and higher)</description> |
36 | | -
|
| 37 | + |
37 | 38 | <scm> |
38 | 39 | <connection>scm:git:git@github.com:Indoqa/solr-facet-api.git</connection> |
39 | 40 | <developerConnection>scm:git:git@github.com:Indoqa/solr-facet-api.git</developerConnection> |
40 | 41 | <url>https://github.com/Indoqa/solr-facet-api</url> |
41 | 42 | <tag>HEAD</tag> |
42 | 43 | </scm> |
43 | 44 |
|
44 | | - |
45 | 45 | <properties> |
46 | | - <project.build.compiler.version>1.8</project.build.compiler.version> |
47 | | - <solr-version>5.1.0</solr-version> |
| 46 | + <project.build.compiler.version>21</project.build.compiler.version> |
| 47 | + |
| 48 | + <solr-zookeper-bom-version>9.6.1.0-SNAPSHOT</solr-zookeper-bom-version> |
48 | 49 | <junit-version>4.13.1</junit-version> |
49 | | - </properties> |
| 50 | + </properties> |
50 | 51 |
|
51 | | - <dependencies> |
| 52 | + <dependencyManagement> |
| 53 | + <dependencies> |
52 | 54 | <dependency> |
53 | | - <groupId>org.apache.solr</groupId> |
54 | | - <artifactId>solr-solrj</artifactId> |
55 | | - <version>${solr-version}</version> |
| 55 | + <groupId>com.indoqa</groupId> |
| 56 | + <artifactId>indoqa-solr-zookeeper-bom</artifactId> |
| 57 | + <version>${solr-zookeper-bom-version}</version> |
| 58 | + <type>pom</type> |
| 59 | + <scope>import</scope> |
56 | 60 | </dependency> |
57 | | - |
58 | | -<!-- Test dependencies--> |
59 | | - <dependency> |
60 | | - <groupId>junit</groupId> |
61 | | - <artifactId>junit</artifactId> |
62 | | - <version>${junit-version}</version> |
63 | | - <scope>test</scope> |
64 | | - </dependency> |
| 61 | + </dependencies> |
| 62 | + </dependencyManagement> |
| 63 | + |
| 64 | + <dependencies> |
| 65 | +<!-- Solr--> |
| 66 | + <dependency> |
| 67 | + <groupId>com.indoqa</groupId> |
| 68 | + <artifactId>indoqa-solrj-shaded</artifactId> |
| 69 | + </dependency> |
| 70 | + |
| 71 | +<!-- Test dependencies--> |
| 72 | + <dependency> |
| 73 | + <groupId>junit</groupId> |
| 74 | + <artifactId>junit</artifactId> |
| 75 | + <version>${junit-version}</version> |
| 76 | + <scope>test</scope> |
| 77 | + </dependency> |
65 | 78 | </dependencies> |
66 | 79 |
|
67 | 80 | <build> |
|
80 | 93 | </plugin> |
81 | 94 | </plugins> |
82 | 95 | </build> |
83 | | - |
84 | 96 | </project> |