Skip to content

Commit

Permalink
fix(jmx): upgrade pax-url to access Maven Central using HTTPs
Browse files Browse the repository at this point in the history
Without this the build fails on a clean local Maven repository

Error resolving artifact org.ops4j.pax.exam:pax-exam-inject:jar:3.4.0: Could not transfer artifact org.ops4j.pax.exam:pax-exam-inject:jar:3.4.0 from/to central (http://repo1.maven.org/maven2/): Error transferring file: Server returned HTTP response code: 501 for URL: http://repo1.maven.org/maven2/org/ops4j/pax/exam/pax-exam-inject/3.4.0/pax-exam-inject-3.4.0.jar
  • Loading branch information
rombert committed Nov 29, 2024
1 parent 450c871 commit d494c21
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion jmx/jmx-itests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<properties>
<exam.version>3.4.0</exam.version>
<url.version>1.6.0</url.version>
<url.version>2.5.3</url.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -181,6 +181,12 @@
<version>${url.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion jmx/jmx-whiteboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</aries.osgi.import.service>

<exam.version>3.4.0</exam.version>
<url.version>1.6.0</url.version>
<url.version>2.5.3</url.version>
</properties>

<build>
Expand Down Expand Up @@ -192,6 +192,12 @@
<version>${url.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-atinject_1.0_spec</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.tinybundles</groupId>
<artifactId>tinybundles</artifactId>
Expand Down

0 comments on commit d494c21

Please sign in to comment.