質問編集履歴
1
a
test
CHANGED
File without changes
|
test
CHANGED
@@ -190,12 +190,134 @@
|
|
190
190
|
|
191
191
|
|
192
192
|
|
193
|
-
|
193
|
+
ネットで「lucene 入門」「close stream Java」などのキーワードで調べています。
|
194
194
|
|
195
195
|
|
196
196
|
|
197
197
|
### 補足情報(FW/ツールのバージョンなど)
|
198
198
|
|
199
|
-
|
199
|
+
環境:Ecllipse4.8.0
|
200
|
+
|
200
|
-
|
201
|
+
言語:Java1.7
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
```xml
|
206
|
+
|
207
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
208
|
+
|
209
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
210
|
+
|
211
|
+
<modelVersion>4.0.0</modelVersion>
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
<groupId>net.comici.jp</groupId>
|
216
|
+
|
217
|
+
<artifactId>analyzer-sample</artifactId>
|
218
|
+
|
219
|
+
<version>1.0-SNAPSHOT</version>
|
220
|
+
|
221
|
+
<packaging>jar</packaging>
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
<name>analyzer-sample</name>
|
226
|
+
|
227
|
+
<url>https://comici.jp</url>
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
<properties>
|
232
|
+
|
233
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
234
|
+
|
235
|
+
</properties>
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
<build>
|
240
|
+
|
241
|
+
<plugins>
|
242
|
+
|
243
|
+
<plugin>
|
244
|
+
|
245
|
+
<groupId>org.apache.maven.plugins</groupId>
|
246
|
+
|
247
|
+
<artifactId>maven-compiler-plugin</artifactId>
|
248
|
+
|
249
|
+
<configuration>
|
250
|
+
|
251
|
+
<source>1.7</source>
|
252
|
+
|
253
|
+
<target>1.7</target>
|
254
|
+
|
255
|
+
</configuration>
|
256
|
+
|
201
|
-
|
257
|
+
</plugin>
|
258
|
+
|
259
|
+
<plugin>
|
260
|
+
|
261
|
+
<groupId>org.codehaus.mojo</groupId>
|
262
|
+
|
263
|
+
<artifactId>exec-maven-plugin</artifactId>
|
264
|
+
|
265
|
+
<version>1.3</version>
|
266
|
+
|
267
|
+
<executions>
|
268
|
+
|
269
|
+
<execution>
|
270
|
+
|
271
|
+
<goals>
|
272
|
+
|
273
|
+
<goal>java</goal>
|
274
|
+
|
275
|
+
</goals>
|
276
|
+
|
277
|
+
</execution>
|
278
|
+
|
279
|
+
</executions>
|
280
|
+
|
281
|
+
<configuration>
|
282
|
+
|
283
|
+
<mainClass>net.comici.test.AnalyzerSample</mainClass>
|
284
|
+
|
285
|
+
</configuration>
|
286
|
+
|
287
|
+
</plugin>
|
288
|
+
|
289
|
+
</plugins>
|
290
|
+
|
291
|
+
</build>
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
<dependencies>
|
296
|
+
|
297
|
+
<dependency>
|
298
|
+
|
299
|
+
<groupId>org.apache.lucene</groupId>
|
300
|
+
|
301
|
+
<artifactId>lucene-analyzers-kuromoji</artifactId>
|
302
|
+
|
303
|
+
<version>4.8.1</version>
|
304
|
+
|
305
|
+
</dependency>
|
306
|
+
|
307
|
+
<dependency>
|
308
|
+
|
309
|
+
<groupId>junit</groupId>
|
310
|
+
|
311
|
+
<artifactId>junit</artifactId>
|
312
|
+
|
313
|
+
<version>3.8.1</version>
|
314
|
+
|
315
|
+
<scope>test</scope>
|
316
|
+
|
317
|
+
</dependency>
|
318
|
+
|
319
|
+
</dependencies>
|
320
|
+
|
321
|
+
</project>
|
322
|
+
|
323
|
+
```
|