@@ -22,7 +22,7 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
2222
2323-->
2424<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
25- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
25+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
2626 <modelVersion >4.0.0</modelVersion >
2727 <groupId >org.opensolaris.opengrok</groupId >
2828 <artifactId >opengrok-indexer</artifactId >
@@ -45,27 +45,29 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
4545 <targetPath >org/opensolaris/opengrok/analysis/sql/</targetPath >
4646 <directory >../src/org/opensolaris/opengrok/analysis/sql/</directory >
4747 <includes >
48- <include >*.dat</include >
48+ <include >*.dat</include >
4949 </includes >
5050 </resource >
5151 <resource >
5252 <targetPath >org/opensolaris/opengrok/analysis/vb/</targetPath >
5353 <directory >../src/org/opensolaris/opengrok/analysis/vb/</directory >
5454 <includes >
55- <include >*.dat</include >
55+ <include >*.dat</include >
5656 </includes >
5757 </resource >
5858 <resource >
5959 <targetPath >org/opensolaris/opengrok/index/</targetPath >
6060 <directory >../src/org/opensolaris/opengrok/index/</directory >
61- <excludes ><exclude >*.java</exclude ></excludes >
61+ <excludes >
62+ <exclude >*.java</exclude >
63+ </excludes >
6264 </resource >
6365 <resource >
6466 <targetPath >org/opensolaris/opengrok/history/</targetPath >
6567 <directory >../src/org/opensolaris/opengrok/history/</directory >
6668 <excludes >
67- <exclude >*.java</exclude >
68- <exclude >*.html</exclude >
69+ <exclude >*.java</exclude >
70+ <exclude >*.html</exclude >
6971 </excludes >
7072 </resource >
7173 </resources >
@@ -74,17 +76,30 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
7476 <testResource >
7577 <targetPath >org/opensolaris/opengrok/history/</targetPath >
7678 <directory >../test/org/opensolaris/opengrok/history/</directory >
77- <excludes ><exclude >*.java</exclude ></excludes >
79+ <excludes >
80+ <exclude >*.java</exclude >
81+ </excludes >
7882 </testResource >
7983 <testResource >
8084 <targetPath >org/opensolaris/opengrok/analysis/php/</targetPath >
8185 <directory >../test/org/opensolaris/opengrok/analysis/php/</directory >
82- <excludes ><exclude >*.java</exclude ></excludes >
86+ <excludes >
87+ <exclude >*.java</exclude >
88+ </excludes >
8389 </testResource >
8490 <testResource >
8591 <targetPath >org/opensolaris/opengrok/analysis/haskell/</targetPath >
8692 <directory >../test/org/opensolaris/opengrok/analysis/haskell/</directory >
87- <excludes ><exclude >*.java</exclude ></excludes >
93+ <excludes >
94+ <exclude >*.java</exclude >
95+ </excludes >
96+ </testResource >
97+ <testResource >
98+ <targetPath >org/opensolaris/opengrok/analysis/java/</targetPath >
99+ <directory >../test/org/opensolaris/opengrok/analysis/java/</directory >
100+ <excludes >
101+ <exclude >*.java</exclude >
102+ </excludes >
88103 </testResource >
89104 </testResources >
90105
@@ -131,7 +146,7 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
131146 </execution >
132147 </executions >
133148 </plugin >
134- <!-- TODO add the same fix as is in build.xml to patch jflex generated files to stop increasing buffer beyond token size that lucene accepts
149+ <!-- TODO add the same fix as is in build.xml to patch jflex generated files to stop increasing buffer beyond token size that lucene accepts
135150 https://github.com/OpenGrok/OpenGrok/issues/1170 make parsers stop producing tokens > 32766 chars
136151 at least for PlainFullTokenizer, PlainSymbolTokenizer, JavaScriptSymbolTokenizer, JavaSymbolTokenizer
137152 use below ?
@@ -221,10 +236,12 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
221236 <groupId >org.apache.lucene</groupId >
222237 <artifactId >lucene-analyzers-common</artifactId >
223238 </dependency >
224- <dependency > <groupId >org.apache.lucene</groupId >
239+ <dependency >
240+ <groupId >org.apache.lucene</groupId >
225241 <artifactId >lucene-queryparser</artifactId >
226242 </dependency >
227- <dependency > <groupId >org.apache.lucene</groupId >
243+ <dependency >
244+ <groupId >org.apache.lucene</groupId >
228245 <artifactId >lucene-suggest</artifactId >
229246 </dependency >
230247 <dependency >
@@ -254,12 +271,12 @@ Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
254271 <artifactId >derby</artifactId >
255272 <scope >test</scope >
256273 </dependency >
257- <!-- <dependency>
258- <groupId>org.apache.derby</groupId>
259- <artifactId>derbyclient</artifactId>
260- <scope>run</scope>
261- </dependency>
262- -->
274+ <!-- <dependency>
275+ <groupId>org.apache.derby</groupId>
276+ <artifactId>derbyclient</artifactId>
277+ <scope>run</scope>
278+ </dependency>
279+ -->
263280
264281 </dependencies >
265282
0 commit comments