Skip to content

Commit

Permalink
Remove obsolete repository sections from poms; misc test fixes to ens…
Browse files Browse the repository at this point in the history
…ure building on apple silicon; library version updates
  • Loading branch information
Tim Boudreau committed Apr 27, 2022
1 parent a832c48 commit d071049
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 36 deletions.
40 changes: 6 additions & 34 deletions netty-http-client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<project xmlns="http:https://maven.apache.org/POM/4.0.0"
xmlns:xsi="http:https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:https://maven.apache.org/POM/4.0.0 http:https://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http:https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:https://maven.apache.org/POM/4.0.0 http:https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mastfrog</groupId>
Expand Down Expand Up @@ -94,40 +94,12 @@
<artifactId>util-net</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>timboudreau-builds</id>
<name>timboudreau.com builds</name>
<url>https://timboudreau.com/maven/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>central</id>
<name>central</name>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
<repository>
<id>sonatype</id>
<name>sourceforge</name>
<url>http:https://oss.sonatype.org/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
</repository>
</repositories>
<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,12 @@ public void setup() throws CertificateException, SSLException, InterruptedExcept
@After
public void tearDown() throws Exception {
Thread.sleep(200);
server.shutdown();
client.shutdown();
if (server != null) {
server.shutdown();
}
if (client != null) {
client.shutdown();
}
}

@Test
Expand Down

0 comments on commit d071049

Please sign in to comment.