You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2022/04/11 13:57:18 UTC

[maven-mvnd] 01/01: Add missing test project

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch default-max-heap
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit f75c731b01bcd125dc769efb2106eb5c78f4f400
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Apr 11 15:53:21 2022 +0200

    Add missing test project
---
 .../src/test/projects/mvnd-props/.mvn/maven.config |  3 +++
 .../test/projects/mvnd-props/.mvn/mvnd.properties  | 17 ++++++++++++++
 .../src/test/projects/mvnd-props/pom.xml           | 27 ++++++++++++++++++++++
 3 files changed, 47 insertions(+)

diff --git a/integration-tests/src/test/projects/mvnd-props/.mvn/maven.config b/integration-tests/src/test/projects/mvnd-props/.mvn/maven.config
new file mode 100644
index 0000000..4230c24
--- /dev/null
+++ b/integration-tests/src/test/projects/mvnd-props/.mvn/maven.config
@@ -0,0 +1,3 @@
+-Dmaven.wagon.httpconnectionManager.ttlSeconds=120
+-Dmaven.wagon.http.retryHandler.requestSentEnabled=true
+-Dmaven.wagon.http.retryHandler.count=10
diff --git a/integration-tests/src/test/projects/mvnd-props/.mvn/mvnd.properties b/integration-tests/src/test/projects/mvnd-props/.mvn/mvnd.properties
new file mode 100644
index 0000000..b688c7b
--- /dev/null
+++ b/integration-tests/src/test/projects/mvnd-props/.mvn/mvnd.properties
@@ -0,0 +1,17 @@
+#
+# Copyright 2022 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+-Dmvnd.maxHeapSize=130m
diff --git a/integration-tests/src/test/projects/mvnd-props/pom.xml b/integration-tests/src/test/projects/mvnd-props/pom.xml
new file mode 100644
index 0000000..4365161
--- /dev/null
+++ b/integration-tests/src/test/projects/mvnd-props/pom.xml
@@ -0,0 +1,27 @@
+<!--
+
+     Copyright 2021 the original author or authors.
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+
+ -->
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
+         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.mvndaemon.mvnd.test.max-heap</groupId>
+    <artifactId>max-heap-jvm-config</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
+</project>