Skip to content

Commit fd5fedf

Browse files
committed
allow development behind proxy
1 parent 52451ec commit fd5fedf

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.mvn/jvm.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Djava.net.useSystemProxies=true

api/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,7 @@
502502
</goals>
503503
<configuration>
504504
<arguments>build</arguments>
505+
<pnpmInheritsProxyConfigFromMaven>false</pnpmInheritsProxyConfigFromMaven>
505506
</configuration>
506507
</execution>
507508
</executions>

contract/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@
201201
</goals>
202202
<configuration>
203203
<arguments>gen:sources</arguments>
204+
<pnpmInheritsProxyConfigFromMaven>false</pnpmInheritsProxyConfigFromMaven>
204205
</configuration>
205206
</execution>
206207
</executions>

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,6 @@
7474
</properties>
7575

7676
<repositories>
77-
<repository>
78-
<id>confluent</id>
79-
<url>https://packages.confluent.io/maven/</url>
80-
</repository>
8177
<repository>
8278
<id>central</id>
8379
<name>Central Repository</name>
@@ -87,13 +83,13 @@
8783
<enabled>false</enabled>
8884
</snapshots>
8985
</repository>
86+
<repository>
87+
<id>confluent</id>
88+
<url>https://packages.confluent.io/maven/</url>
89+
</repository>
9090
</repositories>
9191

9292
<pluginRepositories>
93-
<pluginRepository>
94-
<id>confluent</id>
95-
<url>https://packages.confluent.io/maven/</url>
96-
</pluginRepository>
9793
<pluginRepository>
9894
<id>central</id>
9995
<name>Central Repository</name>
@@ -106,6 +102,10 @@
106102
<updatePolicy>never</updatePolicy>
107103
</releases>
108104
</pluginRepository>
105+
<pluginRepository>
106+
<id>confluent</id>
107+
<url>https://packages.confluent.io/maven/</url>
108+
</pluginRepository>
109109
</pluginRepositories>
110110

111111
<dependencyManagement>

0 commit comments

Comments
 (0)