Skip to content

Commit 1edc439

Browse files
build: update memory settings
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com> Signed-off-by: manticore-projects <andreas@manticore-projects.com>
1 parent 642e7a7 commit 1edc439

File tree

2 files changed

+5
-42
lines changed

2 files changed

+5
-42
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ dependencies {
9595
testImplementation 'com.h2database:h2:+'
9696

9797
// for JaCoCo Reports
98-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
99-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
100-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3'
98+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.+'
99+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.+'
100+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.+'
101101

102102
// https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
103103
testImplementation 'org.mockito:mockito-junit-jupiter:+'

pom.xml

Lines changed: 2 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -283,15 +283,6 @@
283283
<mavenExecutorId>forked-path</mavenExecutorId>
284284
<releaseProfiles>sign-release-artifacts</releaseProfiles>
285285
</configuration>
286-
<!--
287-
<dependencies>
288-
<dependency>
289-
<groupId>org.apache.maven.scm</groupId>
290-
<artifactId>maven-scm-provider-gitexe</artifactId>
291-
<version>1.9.5</version>
292-
</dependency>
293-
</dependencies>
294-
-->
295286
</plugin>
296287
<plugin>
297288
<groupId>org.apache.maven.plugins</groupId>
@@ -336,41 +327,11 @@
336327
</archive>
337328
</configuration>
338329
</plugin>
339-
<plugin>
340-
<artifactId>maven-site-plugin</artifactId>
341-
<version>3.12.1</version>
342-
<executions>
343-
<execution>
344-
<id>attach-descriptor</id>
345-
<goals>
346-
<goal>attach-descriptor</goal>
347-
</goals>
348-
</execution>
349-
</executions>
350-
<configuration>
351-
<locales>en</locales>
352-
</configuration>
353-
</plugin>
354330
<plugin>
355331
<groupId>org.eluder.coveralls</groupId>
356332
<artifactId>coveralls-maven-plugin</artifactId>
357333
<version>4.3.0</version>
358334
</plugin>
359-
<plugin>
360-
<groupId>org.codehaus.mojo</groupId>
361-
<artifactId>cobertura-maven-plugin</artifactId>
362-
<version>2.7</version>
363-
<configuration>
364-
<format>xml</format>
365-
<instrumentation>
366-
<excludes>
367-
<exclude>net/sf/jsqlparser/parser/*.class</exclude>
368-
<exclude>net/sf/jsqlparser/JSQLParserException.class</exclude>
369-
</excludes>
370-
</instrumentation>
371-
<check />
372-
</configuration>
373-
</plugin>
374335
<plugin>
375336
<groupId>org.apache.felix</groupId>
376337
<artifactId>maven-bundle-plugin</artifactId>
@@ -388,6 +349,7 @@
388349
<argLine>
389350
--add-opens=java.base/java.lang=ALL-UNNAMED
390351
--add-opens=java.base/java.util=ALL-UNNAMED
352+
-Xmx2G -Xms512m
391353
</argLine>
392354
</configuration>
393355
</plugin>
@@ -465,6 +427,7 @@
465427
<version>3.0.0-M7</version>
466428
<configuration>
467429
<outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory>
430+
<argLine>-Xmx2G -Xms512m</argLine>
468431
</configuration>
469432
</plugin>
470433
<plugin>

0 commit comments

Comments
 (0)