Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ jobs:
- name: Build and test
run: mvn clean install
- name: Build and test dogstatsd-http-core
run: mvn clean install
working-directory: dogstatsd-http-core
- name: Build and test dogstatsd-http-forwarder
if: matrix.java-version < 11
run: mvn clean install -pl core
working-directory: dogstatsd-http
- name: Build and test dogstatsd-http
if: matrix.java-version >= 11
run: mvn clean install
working-directory: dogstatsd-http-forwarder
working-directory: dogstatsd-http

test-jnr-exclude:
name: Test (Java 9, jnr-exclude)
Expand Down
File renamed without changes.
35 changes: 6 additions & 29 deletions dogstatsd-http-core/pom.xml → dogstatsd-http/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.datadoghq</groupId>
<parent>
<groupId>com.datadoghq</groupId>
<artifactId>dogstatsd-http</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>dogstatsd-http-core</artifactId>
<packaging>jar</packaging>
<name>dogstatsd-http-core</name>
<version>1.0.0-SNAPSHOT</version>
<description>Core primitives for the DogStatsD HTTP client.</description>
<url>https://github.com/DataDog/java-dogstatsd-client</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>https://github.com/DataDog/java-dogstatsd-client</url>
<connection>scm:git:git@github.com:DataDog/java-dogstatsd-client.git</connection>
<developerConnection>scm:git:git@github.com:Datadog/java-dogstatsd-client.git</developerConnection>
</scm>

<developers>
<developer>
<id>datadog</id>
<name>Datadog developers</name>
<email>dev@datadoghq.com</email>
</developer>
</developers>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.datadoghq</groupId>
<parent>
<groupId>com.datadoghq</groupId>
<artifactId>dogstatsd-http</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>dogstatsd-http-forwarder</artifactId>
<packaging>jar</packaging>
<name>dogstatsd-http-forwarder</name>
<version>1.0.0-SNAPSHOT</version>
<description>HTTP forwarder for DogStatsD metrics.</description>
<url>https://github.com/DataDog/java-dogstatsd-client</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>https://github.com/DataDog/java-dogstatsd-client</url>
<connection>scm:git:git@github.com:DataDog/java-dogstatsd-client.git</connection>
<developerConnection>scm:git:git@github.com:Datadog/java-dogstatsd-client.git</developerConnection>
</scm>

<developers>
<developer>
<id>datadog</id>
<name>Datadog developers</name>
<email>dev@datadoghq.com</email>
</developer>
</developers>

<dependencies>
<dependency>
Expand Down
44 changes: 44 additions & 0 deletions dogstatsd-http/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.datadoghq</groupId>
<artifactId>dogstatsd-http</artifactId>
<packaging>pom</packaging>
<name>dogstatsd-http</name>
<version>1.0.0-SNAPSHOT</version>
<description>Aggregator for the DogStatsD HTTP client modules.</description>
<url>https://github.com/DataDog/java-dogstatsd-client</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>https://github.com/DataDog/java-dogstatsd-client</url>
<connection>scm:git:git@github.com:DataDog/java-dogstatsd-client.git</connection>
<developerConnection>scm:git:git@github.com:Datadog/java-dogstatsd-client.git</developerConnection>
</scm>

<developers>
<developer>
<id>datadog</id>
<name>Datadog developers</name>
<email>dev@datadoghq.com</email>
</developer>
</developers>

<modules>
<module>core</module>
<module>forwarder</module>
</modules>
</project>
Loading