pom.xml | pom.xml | |||
---|---|---|---|---|
skipping to change at line 22 | skipping to change at line 22 | |||
Unless required by applicable law or agreed to in writing, software | Unless required by applicable law or agreed to in writing, software | |||
distributed under the License is distributed on an "AS IS" BASIS, | distributed under the License is distributed on an "AS IS" BASIS, | |||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied . | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied . | |||
See the License for the specific language governing permissions and | See the License for the specific language governing permissions and | |||
limitations under the License. | limitations under the License. | |||
--> | --> | |||
<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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>com.smoketurner.dropwizard</groupId> | <groupId>io.dropwizard.modules</groupId> | |||
<artifactId>dropwizard-pom</artifactId> | <artifactId>module-parent</artifactId> | |||
<version>4.0.0-2</version> | <version>4.0.0-rc.2</version> | |||
</parent> | </parent> | |||
<groupId>io.dropwizard.modules</groupId> | <groupId>io.dropwizard.modules</groupId> | |||
<artifactId>dropwizard-protobuf</artifactId> | <artifactId>dropwizard-protobuf</artifactId> | |||
<version>4.0.0-1</version> | <version>4.0.5-1</version> | |||
<packaging>jar</packaging> | <packaging>jar</packaging> | |||
<name>Dropwizard Protocol Buffers Support</name> | <name>Dropwizard Protocol Buffers Support</name> | |||
<description>Support for reading and writing Google Protocol Buffer obj ects</description> | <description>Support for reading and writing Google Protocol Buffer obj ects</description> | |||
<url>https://github.com/dropwizard/dropwizard-protobuf</url> | ||||
<scm> | ||||
<developerConnection>scm:git:git@github.com:dropwizard/dropwizard-p | ||||
rotobuf.git</developerConnection> | ||||
<connection>scm:git:https://github.com/dropwizard/dropwizard-protob | ||||
uf.git</connection> | ||||
<url>https://github.com/dropwizard/dropwizard-protobuf</url> | ||||
<tag>v4.0.0-1</tag> | ||||
</scm> | ||||
<properties> | <properties> | |||
<protobuf.version>3.22.2</protobuf.version> | <protobuf.version>3.25.1</protobuf.version> | |||
<sonar.projectKey>dropwizard_dropwizard-protobuf</sonar.projectKey> | ||||
</properties> | </properties> | |||
<dependencyManagement> | <dependencyManagement> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>com.google.protobuf</groupId> | <groupId>com.google.protobuf</groupId> | |||
<artifactId>protobuf-bom</artifactId> | <artifactId>protobuf-bom</artifactId> | |||
<version>${protobuf.version}</version> | <version>${protobuf.version}</version> | |||
<type>pom</type> | <type>pom</type> | |||
<scope>import</scope> | <scope>import</scope> | |||
skipping to change at line 72 | skipping to change at line 65 | |||
<artifactId>dropwizard-core</artifactId> | <artifactId>dropwizard-core</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.google.protobuf</groupId> | <groupId>com.google.protobuf</groupId> | |||
<artifactId>protobuf-java</artifactId> | <artifactId>protobuf-java</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.google.protobuf</groupId> | <groupId>com.google.protobuf</groupId> | |||
<artifactId>protobuf-java-util</artifactId> | <artifactId>protobuf-java-util</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | ||||
<groupId>org.junit.jupiter</groupId> | ||||
<artifactId>junit-jupiter</artifactId> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.assertj</groupId> | ||||
<artifactId>assertj-core</artifactId> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
</dependencies> | </dependencies> | |||
<build> | <build> | |||
<extensions> | <extensions> | |||
<extension> | <extension> | |||
<groupId>kr.motd.maven</groupId> | <groupId>kr.motd.maven</groupId> | |||
<artifactId>os-maven-plugin</artifactId> | <artifactId>os-maven-plugin</artifactId> | |||
<version>1.7.1</version> | <version>1.7.1</version> | |||
</extension> | </extension> | |||
</extensions> | </extensions> | |||
skipping to change at line 101 | skipping to change at line 104 | |||
</configuration> | </configuration> | |||
<executions> | <executions> | |||
<execution> | <execution> | |||
<goals> | <goals> | |||
<goal>compile</goal> | <goal>compile</goal> | |||
<goal>test-compile</goal> | <goal>test-compile</goal> | |||
</goals> | </goals> | |||
</execution> | </execution> | |||
</executions> | </executions> | |||
</plugin> | </plugin> | |||
<plugin> | ||||
<groupId>com.spotify.fmt</groupId> | ||||
<artifactId>fmt-maven-plugin</artifactId> | ||||
<version>2.21.1</version> | ||||
<executions> | ||||
<execution> | ||||
<goals> | ||||
<goal>format</goal> | ||||
</goals> | ||||
<phase>process-sources</phase> | ||||
</execution> | ||||
</executions> | ||||
<dependencies> | ||||
<dependency> | ||||
<groupId>com.google.googlejavaformat</groupId> | ||||
<artifactId>google-java-format</artifactId> | ||||
<version>1.19.1</version> | ||||
</dependency> | ||||
</dependencies> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-release-plugin</artifactId> | ||||
<configuration> | ||||
<tagNameFormat>v@{project.version}</tagNameFormat> | ||||
</configuration> | ||||
</plugin> | ||||
</plugins> | </plugins> | |||
</build> | </build> | |||
<scm> | ||||
<tag>v4.0.5-1</tag> | ||||
</scm> | ||||
</project> | </project> | |||
End of changes. 7 change blocks. | ||||
15 lines changed or deleted | 47 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |