File tree Expand file tree Collapse file tree 3 files changed +31
-7
lines changed
tests/docker-images/java-test-image Expand file tree Collapse file tree 3 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 47
47
</dependency >
48
48
</dependencies >
49
49
50
- <properties >
51
- <UBUNTU_MIRROR >mirror://mirrors.ubuntu.com/mirrors.txt</UBUNTU_MIRROR >
52
- <UBUNTU_SECURITY_MIRROR >http://security.ubuntu.com/ubuntu/</UBUNTU_SECURITY_MIRROR >
53
- </properties >
54
-
55
50
<profiles >
56
51
<profile >
57
52
<id >git-commit-id-no-git</id >
Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ flexible messaging model and an intuitive client API.</description>
84
84
85
85
<pulsar .client.python.version>3.4.0</pulsar .client.python.version>
86
86
87
+ <UBUNTU_MIRROR >http://archive.ubuntu.com/ubuntu/</UBUNTU_MIRROR >
88
+ <UBUNTU_SECURITY_MIRROR >http://security.ubuntu.com/ubuntu/</UBUNTU_SECURITY_MIRROR >
89
+
87
90
<!-- config keys to configure test selection -->
88
91
<include >**/Test*.java,**/*Test.java,**/*Tests.java,**/*TestCase.java</include >
89
92
<exclude />
@@ -2691,6 +2694,32 @@ flexible messaging model and an intuitive client API.</description>
2691
2694
</repository >
2692
2695
</distributionManagement >
2693
2696
</profile >
2697
+
2698
+ <profile >
2699
+ <id >ubuntu-mirror-set</id >
2700
+ <activation >
2701
+ <property >
2702
+ <name >env.UBUNTU_MIRROR</name >
2703
+ </property >
2704
+ </activation >
2705
+ <properties >
2706
+ <!-- Override the default value with the environment variable -->
2707
+ <UBUNTU_MIRROR >${env.UBUNTU_MIRROR}</UBUNTU_MIRROR >
2708
+ </properties >
2709
+ </profile >
2710
+ <profile >
2711
+ <id >ubuntu-security-mirror-set</id >
2712
+ <activation >
2713
+ <property >
2714
+ <name >env.UBUNTU_SECURITY_MIRROR</name >
2715
+ </property >
2716
+ </activation >
2717
+ <properties >
2718
+ <!-- Override the default value with the environment variable -->
2719
+ <UBUNTU_SECURITY_MIRROR >${env.UBUNTU_SECURITY_MIRROR}</UBUNTU_SECURITY_MIRROR >
2720
+ </properties >
2721
+ </profile >
2722
+
2694
2723
</profiles >
2695
2724
2696
2725
<repositories >
Original file line number Diff line number Diff line change 35
35
<id >docker</id >
36
36
<properties >
37
37
<docker .buildArg.PULSAR_TARBALL>target/pulsar-server-distribution-bin.tar.gz</docker .buildArg.PULSAR_TARBALL>
38
- <docker .buildArg.UBUNTU_MIRROR>${env. UBUNTU_MIRROR} </docker .buildArg.UBUNTU_MIRROR>
39
- <docker .buildArg.UBUNTU_SECURITY_MIRROR>${env. UBUNTU_SECURITY_MIRROR} </docker .buildArg.UBUNTU_SECURITY_MIRROR>
38
+ <docker .buildArg.UBUNTU_MIRROR>${UBUNTU_MIRROR} </docker .buildArg.UBUNTU_MIRROR>
39
+ <docker .buildArg.UBUNTU_SECURITY_MIRROR>${UBUNTU_SECURITY_MIRROR} </docker .buildArg.UBUNTU_SECURITY_MIRROR>
40
40
</properties >
41
41
<activation >
42
42
<property >
You can’t perform that action at this time.
0 commit comments