This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/flume.git
The following commit(s) were added to refs/heads/trunk by this push:
new 275338b allow http access to specific maven repos
275338b is described below
commit 275338b962cd6354f902cae16abdc3dd09d89a1b
Author: Ralph Goers <[email protected]>
AuthorDate: Sun Jan 30 21:47:32 2022 -0700
allow http access to specific maven repos
---
.github/workflows/build.yml | 2 +-
.mvn/local-settings.xml | 55 +++++++++++++++++++++++++++++++++++++++++++++
.mvn/maven.config | 1 +
3 files changed, 57 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cab536a..fec17a1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -57,7 +57,7 @@ jobs:
timeout-minutes: 90
shell: bash
run: |
- ./mvnw clean verify -DredirectTestOutput=false \
+ ./mvnw clean verify -DredirectTestOutput=true \
--show-version --batch-mode --errors --no-transfer-progress \
-DtrimStackTrace=false \
-Dsurefire.rerunFailingTestsCount=2
diff --git a/.mvn/local-settings.xml b/.mvn/local-settings.xml
new file mode 100644
index 0000000..6bf134e
--- /dev/null
+++ b/.mvn/local-settings.xml
@@ -0,0 +1,55 @@
+<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0
http://maven.apache.org/xsd/settings-1.2.0.xsd">
+ <mirrors>
+ <mirror>
+ <id>wso2-unblocked</id>
+ <mirrorOf>wso2</mirrorOf>
+ <name>wso2-unblocked</name>
+ <url>http://dist.wso2.org/maven2/</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>maven-twttr-unblocked</id>
+ <mirrorOf>maven-twttr</mirrorOf>
+ <name>maven-twttr-unblocked</name>
+ <url>http://maven.twttr.com</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>maven-restlet-unblocked</id>
+ <mirrorOf>maven-restlet</mirrorOf>
+ <name>maven-restlet-unblocked</name>
+ <url>http://maven.restlet.org</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>datanucleus-unblocked</id>
+ <mirrorOf>datanucleus</mirrorOf>
+ <name>datanucleus-unblocked</name>
+ <url>http://www.datanucleus.org/downloads/maven2</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>glassfish-repository-unblocked</id>
+ <mirrorOf>glassfish-repository</mirrorOf>
+ <name>glassfish-repository-unblocked</name>
+ <url>http://maven.glassfish.org/content/groups/glassfish</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>glassfish-repo-archive-unblocked</id>
+ <mirrorOf>glassfish-repo-archive</mirrorOf>
+ <name>glassfish-repo-archive-unblocked</name>
+ <url>http://maven.glassfish.org/content/groups/glassfish</url>
+ <blocked>false</blocked>
+ </mirror>
+ <mirror>
+ <id>conjars-unblocked</id>
+ <mirrorOf>conjars</mirrorOf>
+ <name>conjars-unblocked</name>
+ <url>http://conjars.org/repo</url>
+ <blocked>false</blocked>
+ </mirror>
+ </mirrors>
+</settings>
\ No newline at end of file
diff --git a/.mvn/maven.config b/.mvn/maven.config
new file mode 100644
index 0000000..2965a02
--- /dev/null
+++ b/.mvn/maven.config
@@ -0,0 +1 @@
+--settings ./.mvn/local-settings.xml
\ No newline at end of file