Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for reuseForks (0.06 seconds)

  1. fess-crawler-opensearch/pom.xml

    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<configuration>
    					<!-- OpenSearch tests must run sequentially -->
    					<parallel>none</parallel>
    					<forkCount>1</forkCount>
    					<reuseForks>false</reuseForks>
    					<argLine>
    						--add-opens java.base/java.net=ALL-UNNAMED
    						-Xmx2048m
    						-XX:+UseG1GC
    					</argLine>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Mar 05 23:30:42 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  2. .github/workflows/maven.yml

        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml -Dparallel=classes -DthreadCount=4 -DforkCount=1C -DreuseForks=true
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top