source: nutchez-0.1/plugins/lib-xml/plugin.xml @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 2.1 KB
Line 
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<!--
19 ! XML library - Gathers many XML related libraries:
20 !
21 ! * Jaxen
22 !     - Download : http://jaxen.org/releases.html
23 !     - License  : http://jaxen.org/license.html
24 !
25 !   * Xerces-J 2.6.1
26 !     - Download : http://xerces.apache.org/xerces2-j/download.cgi
27 !     - License  : http://www.apache.org/licenses/LICENSE-2.0
28 !
29 !   * SAXPath 1.0 FCS
30 !     - Note     : SAXPath has been incorporated into Jaxen.
31 !                  It has been merged into the Jaxen codebase
32 !                  and is no longer being maintained separately
33 !     - Download : http://sourceforge.net/project/showfiles.php?group_id=26014
34 !     - License  : OSI-Approved Open Source
35 !
36 !   * jdom 1.0 beta8-dev
37 !     - Download : http://www.jdom.org/downloads/index.html
38 !     - License  : http://www.jdom.org/docs/faq.html#a0030
39 !
40 !-->
41<plugin
42   id="lib-xml"
43   name="XML Libraries"
44   version="1.0"
45   provider-name="org.apache.nutch.xml">
46
47   <runtime>
48     <library name="jaxen-core.jar">
49       <export name="*"/>
50     </library>
51     <library name="jaxen-jdom.jar">
52       <export name="*"/>
53     </library>
54     <library name="xercesImpl.jar">
55       <export name="*"/>
56     </library>
57     <library name="saxpath.jar">
58       <export name="*"/>
59     </library>
60     <library name="jdom.jar">
61        <export name="*"/>
62     </library>
63   </runtime>
64
65</plugin>
Note: See TracBrowser for help on using the repository browser.