Skip to content

Commit

Permalink
v2.8.2 with automatic module names
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Boudreau committed Jun 18, 2022
1 parent 5e914b0 commit 71e40df
Show file tree
Hide file tree
Showing 5 changed files with 101 additions and 16 deletions.
20 changes: 17 additions & 3 deletions netty-http-client-tests/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
<?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">

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
<relativePath/>
</parent>

<artifactId>netty-http-client-tests</artifactId>

<url>https://github.com/timboudreau/netty-http-client</url>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -34,27 +42,33 @@
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>

<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
<developerConnection>[email protected]/timboudreau/netty-http-client.git</developerConnection>
</scm>

<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>

<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Tim Boudreau</name>
<email>[email protected]</email>
<url>https://timboudreau.com</url>
</developer>
</developers>

</project>

33 changes: 30 additions & 3 deletions netty-http-client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
<?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">

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
<relativePath/>
</parent>

<artifactId>netty-http-client</artifactId>

<url>https://github.com/timboudreau/netty-http-client</url>

<licenses>
<license>
<name>MIT</name>
Expand All @@ -19,6 +27,7 @@
</licenses>
<name>Netty Http Client</name>
<description>An asynchronous HTTP client library based on Netty 4.x</description>

<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
Expand All @@ -28,17 +37,21 @@
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>

<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>

<developers>
<developer>
<email>[email protected]</email>
<name>Tim Boudreau</name>
</developer>
</developers>

<dependencies>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
Expand Down Expand Up @@ -99,26 +112,40 @@
<artifactId>bcpkix-jdk15on</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>

<parallel>methods</parallel>
<parallelMavenExecution>false</parallelMavenExecution>
<perCoreThreadCount>1</perCoreThreadCount>
<threadCount>1</threadCount>
<reuseForks>false</reuseForks>

<systemPropertyVariables>
<forkNumber>${surefire.forkNumber}</forkNumber>

<!-- <io.netty.leakDetection.level>advanced</io.netty.leakDetection.level> -->

<java.util.logging.config>${basedir}/test-logging.properties</java.util.logging.config>
<http.client.dev.logging>true</http.client.dev.logging>
</systemPropertyVariables>

</configuration>

</plugin>

</plugins>

</build>

</project>

24 changes: 20 additions & 4 deletions netty-http-test-harness/pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
<?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">

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
<relativePath/>
</parent>

<artifactId>netty-http-test-harness</artifactId>

<url>https://github.com/timboudreau/netty-http-client</url>
<name>Netty Http Test Harness</name>
<description>An asynchronous HTTP client test harness with a fluent interface</description>
<description>
An asynchronous HTTP client test harness with a fluent interface
</description>

<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
Expand All @@ -21,10 +31,12 @@
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>

<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -47,18 +59,22 @@
<artifactId>junit</artifactId>
</dependency>
</dependencies>

<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Tim Boudreau</name>
<email>[email protected]</email>
<url>https://timboudreau.com</url>
</developer>
</developers>

</project>

19 changes: 16 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
<?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">

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
<relativePath/>
</parent>

<artifactId>netty-http-client-modules</artifactId>

<url>https://github.com/timboudreau/netty-http-client</url>
<name>Netty Http Client (modules)</name>
<packaging>pom</packaging>
Expand All @@ -22,27 +29,33 @@
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>

<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
<developerConnection>[email protected]/timboudreau/netty-http-client.git</developerConnection>
</scm>

<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>

<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Tim Boudreau</name>
<email>[email protected]</email>
<url>https://timboudreau.com</url>
</developer>
</developers>

</project>

21 changes: 18 additions & 3 deletions tiny-http-server/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
<?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">

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.8.1</version>
<version>2.8.2</version>
<relativePath/>
</parent>

<artifactId>tiny-http-server</artifactId>

<url>https://github.com/timboudreau/netty-http-client</url>

<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
Expand All @@ -19,18 +27,21 @@
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>

<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>
<name>Tiny Http Server</name>

<build>
<plugins>
<plugin>
Expand All @@ -43,7 +54,9 @@
</configuration>
</plugin>
</plugins>

</build>

<dependencies>
<dependency>
<groupId>io.netty</groupId>
Expand All @@ -62,4 +75,6 @@
<artifactId>netty-handler</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit 71e40df

Please sign in to comment.