Skip to content

Commit 39f4240

Browse files
authored
Maven requires https connection (protocolbuffers#7110)
1 parent 35febfc commit 39f4240

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

csharp/compatibility_tests/v3.0.0/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ TEST_VERSION=3.0.0
4040
# is also possible to use this same test set to test the compatibility of the
4141
# latest version against other versions.
4242
OLD_VERSION=$1
43-
OLD_VERSION_PROTOC=http://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
43+
OLD_VERSION_PROTOC=https://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
4444

4545
echo "Running compatibility tests with $OLD_VERSION"
4646

php/tests/compatibility_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ set -ex
7171
cd $(dirname $0)
7272

7373
OLD_VERSION=$1
74-
OLD_VERSION_PROTOC=http://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
74+
OLD_VERSION_PROTOC=https://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
7575

7676
# Extract the latest protobuf version number.
7777
VERSION_NUMBER=`grep "PHP_PROTOBUF_VERSION" ../ext/google/protobuf/protobuf.h | sed "s|#define PHP_PROTOBUF_VERSION \"\(.*\)\"|\1|"`

python/compatibility_tests/v2.5.0/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TEST_VERSION=2.5.0
1515
# is also possible to use this same test set to test the compatibility of the
1616
# latest version against other versions.
1717
OLD_VERSION=$1
18-
OLD_VERSION_PROTOC=http://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
18+
OLD_VERSION_PROTOC=https://repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
1919

2020
# Extract the latest protobuf version number.
2121
VERSION_NUMBER=`grep "^__version__ = '.*'" ../../google/protobuf/__init__.py | sed "s|__version__ = '\(.*\)'|\1|"`

ruby/compatibility_tests/v3.0.0/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PROTOC_BINARY_NAME="protoc-3.0.0-linux-x86_64.exe"
1010
if [ `uname` = "Darwin" ]; then
1111
PROTOC_BINARY_NAME="protoc-3.0.0-osx-x86_64.exe"
1212
fi
13-
wget http://repo1.maven.org/maven2/com/google/protobuf/protoc/3.0.0/${PROTOC_BINARY_NAME} -O protoc
13+
wget https://repo1.maven.org/maven2/com/google/protobuf/protoc/3.0.0/${PROTOC_BINARY_NAME} -O protoc
1414
chmod +x protoc
1515

1616
# Run tests

0 commit comments

Comments
 (0)