-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpom.xml
More file actions
114 lines (114 loc) · 3.48 KB
/
pom.xml
File metadata and controls
114 lines (114 loc) · 3.48 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
<?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>org.codelibs.fess</groupId>
<artifactId>fess-crawler-parent</artifactId>
<version>15.6.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Fess Crawler Project</name>
<description>Fess Crawler is Crawler Framework.</description>
<url>https://github.com/codelibs/fess-crawler</url>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>CodeLibs</name>
<url>https://fess.codelibs.org/</url>
</organization>
<developers>
<developer>
<id>shinsuke</id>
<name>Shinsuke Sugaya</name>
<email>shinsuke.sugaya@codelibs.co</email>
<organization>CodeLibs Inc.</organization>
<organizationUrl>https://codelibs.co</organizationUrl>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/codelibs/fess-crawler/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:codelibs/fess-crawler.git</connection>
<developerConnection>scm:git:git@github.com:codelibs/fess-crawler.git</developerConnection>
<url>git@github.com:codelibs/fess-crawler.git</url>
<tag>HEAD</tag>
</scm>
<parent>
<groupId>org.codelibs.fess</groupId>
<artifactId>fess-parent</artifactId>
<version>15.6.0-SNAPSHOT</version>
</parent>
<modules>
<module>fess-crawler</module>
<module>fess-crawler-lasta</module>
<module>fess-crawler-opensearch</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.dbflute:dbflute-runtime</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.dbflute</pattern>
<shadedPattern>org.codelibs.fess.crawler.dbflute</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- Enable parallel test execution at class level -->
<parallel>classes</parallel>
<threadCount>4</threadCount>
<!-- One fork per CPU core for parallel execution -->
<forkCount>1C</forkCount>
<reuseForks>true</reuseForks>
<!-- JVM settings for test execution -->
<argLine>
--add-opens java.base/java.net=ALL-UNNAMED
-Xmx2048m
-XX:+UseG1GC
</argLine>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>snapshots.central.sonatype.com</id>
<url>https://central.sonatype.com/repository/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>