Skip to content

Commit

Permalink
Use new Dropwizard Module Parent
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Dec 8, 2023
1 parent 19da1cd commit b3a3eff
Showing 1 changed file with 5 additions and 173 deletions.
178 changes: 5 additions & 173 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,91 +2,36 @@
<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>

<parent>
<groupId>io.dropwizard.modules</groupId>
<artifactId>module-parent</artifactId>
<version>4.0.0-rc.1</version>
</parent>
<groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-kafka</artifactId>
<version>4.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Dropwizard Kafka</name>
<description>Provides easy integration for Dropwizard applications with Apache Kafka</description>
<url>https://github.com/dropwizard/dropwizard-kafka</url>

<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<developerConnection>scm:git:[email protected]:dropwizard/dropwizard-kafka.git</developerConnection>
<connection>scm:git:https://github.com/dropwizard/dropwizard-kafka.git</connection>
<url>https://github.com/dropwizard/dropwizard-kafka</url>
<tag>HEAD</tag>
</scm>

<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/dropwizard/dropwizard-kafka/actions</url>
</ciManagement>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/dropwizard/dropwizard-kafka/issues</url>
</issueManagement>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<site>
<id>dropwizard-kafka</id>
<url>http://dropwizard.github.io/dropwizard-kafka/${project.version}</url>
</site>
</distributionManagement>

<developers>
<developer>
<id>mzamani1</id>
<name>Michael Zamani</name>
<email>[email protected]</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>

<sonar.projectKey>dropwizard_dropwizard-kafka</sonar.projectKey>
<sonar.organization>dropwizard</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<brave.version>5.16.0</brave.version>
<dropwizard.version>4.0.4</dropwizard.version>
<kafka-client.version>3.5.1</kafka-client.version>
<spring-kafka.version>2.9.13</spring-kafka.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-dependencies</artifactId>
<version>${dropwizard.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
Expand Down Expand Up @@ -200,16 +145,6 @@
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.10.0.2594</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
</plugin>
</plugins>
</pluginManagement>

Expand Down Expand Up @@ -247,109 +182,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<properties>
<maven.compiler.optimize>true</maven.compiler.optimize>
<gpg.keyname>EDA86E9FB607B5FC9223FB767D4868B53E31E7AD</gpg.keyname>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<executions>
<execution>
<id>nexus-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit b3a3eff

Please sign in to comment.