1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
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 | |
---|
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 | --> |
---|
18 | <plugin |
---|
19 | id="clustering-carrot2" |
---|
20 | name="Online Search Results Clustering using Carrot2's components" |
---|
21 | version="1.0.3" |
---|
22 | provider-name="www.carrot2.org"> |
---|
23 | |
---|
24 | <runtime> |
---|
25 | <library name="clustering-carrot2.jar"> |
---|
26 | <export name="*"/> |
---|
27 | </library> |
---|
28 | |
---|
29 | <!-- |
---|
30 | The defaults for Lingo. If you plan to use another clustering |
---|
31 | algorithm from the Carrot2 project, you'll need all the JARs |
---|
32 | required for that algorithm. |
---|
33 | --> |
---|
34 | <library name="carrot2-filter-lingo.jar"/> |
---|
35 | <library name="carrot2-local-core.jar"/> |
---|
36 | <library name="carrot2-snowball-stemmers.jar"/> |
---|
37 | <library name="carrot2-util-common.jar"/> |
---|
38 | <library name="carrot2-util-tokenizer.jar"/> |
---|
39 | |
---|
40 | <library name="commons-collections-3.2.jar"/> |
---|
41 | <library name="commons-pool-1.3.jar"/> |
---|
42 | <library name="Jama-1.0.2.jar"/> |
---|
43 | <library name="violinstrings-1.0.2.jar"/> |
---|
44 | </runtime> |
---|
45 | |
---|
46 | <requires> |
---|
47 | <import plugin="nutch-extensionpoints"/> |
---|
48 | </requires> |
---|
49 | |
---|
50 | <extension id="org.apache.nutch.clustering.carrot2" |
---|
51 | name="Carrot2 Clusterer" |
---|
52 | point="org.apache.nutch.clustering.OnlineClusterer"> |
---|
53 | <implementation id="Carrot2" |
---|
54 | class="org.apache.nutch.clustering.carrot2.Clusterer"/> |
---|
55 | </extension> |
---|
56 | </plugin> |
---|