Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jangalinski committed Oct 9, 2024
2 parents 596cdc9 + 5b6476d commit 17bd246
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ buildNumber.properties
.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
.mvn/wrapper/maven-wrapper.jar
.mvn/maven.config

### STS ###
.apt_generated
Expand Down
2 changes: 2 additions & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--add-opens=java.base/java.lang=ALL-UNNAMED
--add-opens=java.base/java.io=ALL-UNNAMED
21 changes: 3 additions & 18 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.toolisticon.jackson.module</groupId>
<artifactId>jackson-avro-module</artifactId>
<version>0.1.3</version>
<version>0.2.0</version>
<name>${project.artifactId}</name>
<description>Serialize/Deserialize generated avro records to/from json using jackson objectMapper</description>
<url>https://github.com/toolisticon/jackson-avro-module/</url>
Expand All @@ -15,8 +15,8 @@
<kotlin-logging.version>3.0.2</kotlin-logging.version>
<java.version>11</java.version>

<avro.version>1.11.1</avro.version>
<jackson.version>2.13.4</jackson.version>
<avro.version>1.12.0</avro.version>
<jackson.version>2.17.2</jackson.version>

<!-- TEST -->
<junit5.version>5.9.1</junit5.version>
Expand Down

0 comments on commit 17bd246

Please sign in to comment.