public
Description: semantic repository service is intended for indexing content from different sources and maintain multi indexes for different types of content and perform different types of search. yet another solr type indexing service on top of lucene but it will gradually support content versioning and more semantic search result.
Homepage: http://hasan.we4tech.com
Clone URL: git://github.com/we4tech/semantic-repository.git
fixed thread synchronization related bug
nhm tanveer hossain khan (hasan) (author)
Wed Apr 30 11:32:35 -0700 2008
commit  28b6e93d1b3975feaf208df24d3d2ba1fd5b26e1
tree    63b29915d3ff7e2ad6789b67fd8834ab5101997f
parent  91ebb2370d7d8b08a25d46855cbb46980b06e677
...
23
24
25
26
 
27
28
29
...
23
24
25
 
26
27
28
29
0
@@ -23,7 +23,7 @@
0
   </logger>
0
 
0
   <root>
0
- <level value="WARN"/>
0
+ <level value="DEBUG"/>
0
     <!--<appender-ref ref="FILE"/>-->
0
     <appender-ref ref="CONSOLE"/>
0
   </root>
...
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
217
 
 
218
219
 
220
 
 
 
 
 
 
221
222
223
224
 
 
225
226
 
227
 
 
 
 
 
 
228
229
230
231
 
 
232
233
 
234
 
 
 
 
 
 
235
236
237
238
 
 
239
240
 
241
 
 
 
 
 
 
242
243
244
245
 
 
246
247
 
248
 
 
 
 
 
 
249
250
251
252
 
 
253
254
 
255
 
 
 
 
 
 
256
257
258
259
 
 
260
261
 
262
 
 
 
 
 
 
263
264
265
266
 
 
267
268
 
269
 
 
 
 
 
 
270
271
272
273
 
 
274
275
 
276
 
 
 
 
 
 
277
278
279
280
 
 
281
282
 
283
 
 
 
 
 
 
284
285
286
287
 
 
288
289
 
290
 
 
 
 
 
 
291
292
293
294
 
 
295
296
 
297
 
 
 
 
 
 
298
299
300
301
 
 
302
303
 
304
 
 
 
 
 
 
305
306
307
308
 
 
309
310
 
311
 
 
 
 
 
 
312
313
314
315
 
 
316
317
 
318
 
 
 
 
 
 
319
320
321
322
 
 
323
324
 
325
 
 
 
 
 
 
326
327
328
329
 
 
330
331
 
332
 
 
 
 
 
 
333
334
335
336
 
 
337
338
 
339
 
 
 
 
 
 
340
341
342
343
 
 
344
345
 
346
 
 
 
 
 
 
347
348
349
350
 
 
351
352
 
353
 
 
 
 
 
 
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
380
381
 
...
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
217
218
219
220
221
222
223
224
 
 
225
226
227
 
228
229
230
231
232
233
234
235
236
237
 
 
238
239
240
 
241
242
243
244
245
246
247
248
249
250
 
 
 
251
252
253
 
254
255
256
257
258
259
260
261
262
263
 
 
264
265
266
 
267
268
269
270
271
272
273
274
275
276
 
 
277
278
279
 
280
281
282
283
284
285
286
287
288
289
 
 
290
291
292
 
293
294
295
296
297
298
299
300
301
302
 
 
303
304
305
 
306
307
308
309
310
311
312
313
314
315
 
 
316
317
318
 
319
320
321
322
323
324
325
326
327
328
 
 
329
330
331
 
332
333
334
335
336
337
338
339
340
341
 
 
342
343
344
 
345
346
347
348
349
350
351
352
353
354
 
 
355
356
357
 
358
359
360
361
362
363
364
365
366
367
 
 
368
369
370
 
371
372
373
374
375
376
377
378
379
380
 
 
381
382
383
 
384
385
386
387
388
389
390
391
392
393
 
 
394
395
396
 
397
398
399
400
401
402
403
404
405
406
 
 
407
408
409
 
410
411
412
413
414
415
416
417
418
419
 
 
420
421
422
 
423
424
425
426
427
428
429
430
431
432
 
 
433
434
435
 
436
437
438
439
440
441
442
443
444
445
 
 
446
447
448
 
449
450
451
452
453
454
455
456
457
458
 
 
459
460
461
 
462
463
464
465
466
467
468
469
470
471
 
 
472
473
474
 
475
476
477
478
479
480
481
482
483
484
 
 
485
486
487
 
488
489
490
491
492
493
494
495
496
497
 
 
498
499
500
 
501
502
503
504
505
506
507
508
509
510
 
 
511
512
513
 
514
515
516
517
518
519
520
521
522
523
 
 
524
525
526
 
527
528
529
530
531
532
533
534
535
536
 
 
537
538
539
 
540
541
542
543
544
545
546
547
548
549
 
 
550
551
552
 
553
554
555
556
557
558
559
560
561
562
 
 
563
564
565
 
566
567
568
569
570
571
572
573
574
575
 
 
576
577
578
 
579
580
581
582
583
584
585
586
587
588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
 
709
710
0
@@ -1,381 +1,710 @@
0
 <?xml version="1.0" encoding="UTF-8"?>
0
-
0
-<!--
0
-/*
0
- * Copyright 2001-2005 The Apache Software Foundation.
0
- *
0
- * Licensed under the Apache License, Version 2.0 (the "License");
0
- * you may not use this file except in compliance with the License.
0
- * You may obtain a copy of the License at
0
- *
0
- * http://www.apache.org/licenses/LICENSE-2.0
0
- *
0
- * Unless required by applicable law or agreed to in writing, software
0
- * distributed under the License is distributed on an "AS IS" BASIS,
0
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0
- * See the License for the specific language governing permissions and
0
- * limitations under the License.
0
- */
0
- -->
0
-<module version="4" relativePaths="false" type="JAVA_MODULE">
0
- <component name="NewModuleRootManager">
0
- <exclude-output/>
0
- <orderEntry type="inheritedJdk"/>
0
- <!-- output url="file://$$MODULE_DIR$$/${maven.build.dest}"/ -->
0
- <!-- output-test url="file://$$MODULE_DIR$$/${maven.test.dest}"/ -->
0
- <content url="file://$MODULE_DIR$">
0
- <!-- sourceFolder url="file://$$MODULE_DIR$$/${pom.build.sourceDirectory}" isTestSource="false"/ -->
0
- <!-- sourceFolder url="file://$$MODULE_DIR$$/${pom.build.testSourceDirectory}" isTestSource="true"/ -->
0
- <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false"/>
0
- <excludeFolder url="file://$MODULE_DIR$/target"/>
0
- </content>
0
- <orderEntry type="sourceFolder" forTests="false"/>
0
- <!-- Next include each dependency:
0
- <orderEntry type="module" module-name="${dep.artifactId}"/>
0
- <orderEntry type="module-library">
0
- <library name="${dep.artifactId}">
0
- <CLASSES>
0
- <root url="jar://${lib.path}!/"/>
0
- </CLASSES>
0
- <JAVADOC/>
0
- <SOURCES/>
0
- </library>
0
- </orderEntry>
0
- -->
0
- <output url="file://$MODULE_DIR$/target/classes"/>
0
- <output-test url="file://$MODULE_DIR$/target/test-classes"/>
0
- <orderEntry type="module-library">
0
- <library>
0
+<module relativePaths="true" type="JAVA_MODULE" version="4">
0
+ <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
0
+ <output url="file://$MODULE_DIR$/target/classes" />
0
+ <exclude-output />
0
+ <output-test url="file://$MODULE_DIR$/target/test-classes" />
0
+ <content url="file://$MODULE_DIR$">
0
+ <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
0
+ <sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
0
+ <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
0
+ <sourceFolder url="file://$MODULE_DIR$/src/test/resources" isTestSource="true" />
0
+ <excludeFolder url="file://$MODULE_DIR$/target/classes" />
0
+ <excludeFolder url="file://$MODULE_DIR$/target/test-classes" />
0
+ </content>
0
+ <orderEntry type="inheritedJdk" />
0
+ <orderEntry type="sourceFolder" forTests="false" />
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="xom:xom:1.1">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xom/xom/1.1/xom-1.1.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xom/xom/1.1/xom-1.1-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xom/xom/1.1/xom-1.1-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="xerces:xmlParserAPIs:2.6.2">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xmlParserAPIs/2.6.2/xmlParserAPIs-2.6.2-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="xerces:xercesImpl:2.6.2">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/junit/junit/3.8.1/junit-3.8.1.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="xalan:xalan:2.7.0">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/org/springframework/spring-webmvc/2.5.2/spring-webmvc-2.5.2.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xalan/xalan/2.7.0/xalan-2.7.0.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xalan/xalan/2.7.0/xalan-2.7.0-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xalan/xalan/2.7.0/xalan-2.7.0-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="xml-apis:xml-apis:1.0.b2">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/org/springframework/module/lucene/0.9/lucene-0.9.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="jaxen:jaxen:1.1-beta-8">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jaxen/jaxen/1.1-beta-8/jaxen-1.1-beta-8.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jaxen/jaxen/1.1-beta-8/jaxen-1.1-beta-8-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jaxen/jaxen/1.1-beta-8/jaxen-1.1-beta-8-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="dom4j:dom4j:1.6.1">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/asm/asm-tree/2.2.3/asm-tree-2.2.3.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/dom4j/dom4j/1.6.1/dom4j-1.6.1-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/dom4j/dom4j/1.6.1/dom4j-1.6.1-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="jdom:jdom:1.0">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-collections/commons-collections/2.1/commons-collections-2.1.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jdom/jdom/1.0/jdom-1.0.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jdom/jdom/1.0/jdom-1.0-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jdom/jdom/1.0/jdom-1.0-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="log4j:log4j:1.2.9">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/org/springframework/spring-beans/2.5.2/spring-beans-2.5.2.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/log4j/log4j/1.2.9/log4j-1.2.9.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/log4j/log4j/1.2.9/log4j-1.2.9-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/log4j/log4j/1.2.9/log4j-1.2.9-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="jmock:jmock:1.1.0">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jmock/jmock/1.1.0/jmock-1.1.0.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jmock/jmock/1.1.0/jmock-1.1.0-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/jmock/jmock/1.1.0/jmock-1.1.0-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
     <orderEntry type="module-library">
0
- <library>
0
+ <library name="junit:junit:3.8.1">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/org/springframework/spring-core/2.5.2/spring-core-2.5.2.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/junit/junit/3.8.1/junit-3.8.1.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/junit/junit/3.8.1/junit-3.8.1-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/junit/junit/3.8.1/junit-3.8.1-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="javax.mail:mail:1.4">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/jaxen/jaxen/1.1-beta-8/jaxen-1.1-beta-8.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/mail/mail/1.4/mail-1.4.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/mail/mail/1.4/mail-1.4-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/mail/mail/1.4/mail-1.4-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="javax.activation:activation:1.0.2">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/jdom/jdom/1.0/jdom-1.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/activation/activation/1.0.2/activation-1.0.2.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/activation/activation/1.0.2/activation-1.0.2-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/activation/activation/1.0.2/activation-1.0.2-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
     <orderEntry type="module-library">
0
- <library>
0
+ <library name="javax.servlet:servlet-api:2.4">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-digester/commons-digester/1.6/commons-digester-1.6.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/servlet/servlet-api/2.4/servlet-api-2.4-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/javax/servlet/servlet-api/2.4/servlet-api-2.4-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="org.apache.lucene:lucene-core:2.3.1">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/org/apache/lucene/lucene-core/2.3.1/lucene-core-2.3.1.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/org/apache/lucene/lucene-core/2.3.1/lucene-core-2.3.1-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/org/apache/lucene/lucene-core/2.3.1/lucene-core-2.3.1-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="mysql:mysql-connector-java:5.0.4">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="com.ibatis:ibatis2-sqlmap:2.3.0">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/asm/asm/2.2.3/asm-2.2.3.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/com/ibatis/ibatis2-sqlmap/2.3.0/ibatis2-sqlmap-2.3.0.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/com/ibatis/ibatis2-sqlmap/2.3.0/ibatis2-sqlmap-2.3.0-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/com/ibatis/ibatis2-sqlmap/2.3.0/ibatis2-sqlmap-2.3.0-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="commons-dbcp:commons-dbcp:1.2.2">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module" module-name="idea-repository-common"/>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="commons-pool:commons-pool:1.3">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/org/apache/lucene/lucene-core/2.0.0/lucene-core-2.0.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-pool/commons-pool/1.3/commons-pool-1.3.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-pool/commons-pool/1.3/commons-pool-1.3-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/commons-pool/commons-pool/1.3/commons-pool-1.3-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" exported="">
0
+ <library name="struts:struts:1.2.9">
0
         <CLASSES>
0
- <root url="jar:///Users/nhmtanveerhossainkhanhasan/Library/maven_repository/aop/aspectj-weaver/1.0/aspectj-weaver-1.0.jar!/"/>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/struts/struts/1.2.9/struts-1.2.9.jar!/" />
0
         </CLASSES>
0
+ <JAVADOC>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/struts/struts/1.2.9/struts-1.2.9-javadoc.jar!/" />
0
+ </JAVADOC>
0
+ <SOURCES>
0
+ <root url="jar://$MODULE_DIR$/../../../../../Library/maven_repository/struts/struts/1.2.9/struts-1.2.9-sources.jar!/" />
0
+ </SOURCES>
0
       </library>
0
     </orderEntry>
0
- <orderEntry type="module-library">
0
- <library>
0
+ <orderEntry type="module-library" expo