public
Description: A creepy crawler
Homepage:
Clone URL: git://github.com/emi/bixo.git
Ken Krugler (author)
Fri Oct 30 05:33:27 -0700 2009
commit  fc770135e3d01e7982ee25da5c79028f1f5ce19f
tree    0128dc5bd4830d1b858a4c1a719a23b265bf65ac
parent  d5b5323463061b49ba3f9eae21d18685f20fdbda
bixo / pom.xml
100644 216 lines (181 sloc) 6.324 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="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">
      
    <modelVersion>4.0.0</modelVersion>
    <groupId>bixo</groupId>
<artifactId>bixo-core</artifactId>
<name>Bixo core components</name>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<url>http://bixo.101tec.com</url>
<description>Bixo is an open source Java web mining toolkit that runs as a series of Cascading pipes. It is designed to be used as a tool for creating customized crawlers and analyzers, thus each Cascading pipe implements a discrete operation.</description>
<scm>
<connection>scm:git:git://github.com/emi/bixo.git</connection>
<url>scm:git:git://github.com/emi/bixo.git</url>
</scm>
<packaging>jar</packaging>
<!-- Must be kept in sync with "version" value in build.properties -->
<version>1.0-SNAPSHOT</version>
 
<repositories>
<repository>
<id>101tec Public</id>
<name>101tec Nexus repository</name>
<url>http://oss.101tec.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
 
</repositories>
 
<dependencies>
 
<!-- Compile time dependencies -->
 
<dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-core</artifactId>
            <version>0.19.2</version>
        </dependency>
        
<dependency>
            <groupId>cascading</groupId>
            <artifactId>cascading-core</artifactId>
            <version>1.0.16</version>
        </dependency>
        
<dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpcore</artifactId>
            <version>4.0.1</version>
        </dependency>
        
<dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.0</version>
        </dependency>
        
<dependency>
            <groupId>org.apache.lucene</groupId>
            <artifactId>lucene-core</artifactId>
            <version>2.4.1</version>
        </dependency>
        
<dependency>
            <groupId>bixo</groupId>
            <artifactId>tika-core</artifactId>
            <version>0.5-dev-2</version>
        </dependency>
        
<dependency>
            <groupId>bixo</groupId>
            <artifactId>tika-parsers</artifactId>
            <version>0.5-dev-2</version>
        </dependency>
        
<dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.14</version>
        </dependency>
 
<dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.4</version>
        </dependency>
 
<dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.3.2</version>
        </dependency>
 
<dependency>
            <groupId>org.kohsuke</groupId>
            <artifactId>args4j</artifactId>
            <version>2.0.10</version>
        </dependency>
 
<!-- Test dependencies -->
 
<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.8.0</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-test</artifactId>
            <version>0.19.2</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>jetty</groupId>
            <artifactId>jetty</artifactId>
            <version>5.1.10</version>
            <scope>test</scope>
        </dependency>
 
        <!-- These two jars could be a runtime dependency of hadoop-core,
but it doesn't seem to work for running unit tests that use
Hadoop.
-->
<dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>jasper</artifactId>
            <version>6.0.20</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.1</version>
            <scope>runtime</scope>
        </dependency>
 
<dependency>
            <groupId>cascading</groupId>
            <artifactId>cascading-test</artifactId>
            <version>1.0.16</version>
            <scope>test</scope>
        </dependency>
        
<dependency>
            <groupId>it.unimi</groupId>
            <artifactId>dsiutils</artifactId>
            <version>1.0.7</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>it.unimi</groupId>
            <artifactId>fastutil5</artifactId>
            <version>5.1.5</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>it.unimi</groupId>
            <artifactId>webgraph</artifactId>
            <version>2.4.2</version>
            <scope>test</scope>
        </dependency>
 
<dependency>
            <groupId>org.archive</groupId>
            <artifactId>heritrix</artifactId>
            <version>1.14.3</version>
            <scope>test</scope>
        </dependency>
 
<!-- Provided dependencies -->
 
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
        
<!-- Eclipse project generation dependencies -->
 
<dependency>
            <groupId>ant-eclipse</groupId>
            <artifactId>ant-eclipse-jvm1.2</artifactId>
            <version>1.0</version>
            <scope>eclipse</scope>
        </dependency>
        
</dependencies>
 
</project>