Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* Update deployment

* Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0

Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.7.0...maven-javadoc-plugin-3.8.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump com.amazonaws:aws-lambda-java-events from 3.12.0 to 3.13.0

Bumps [com.amazonaws:aws-lambda-java-events](https://github.com/aws/aws-lambda-java-libs) from 3.12.0 to 3.13.0.
- [Commits](https://github.com/aws/aws-lambda-java-libs/commits)

---
updated-dependencies:
- dependency-name: com.amazonaws:aws-lambda-java-events
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump org.hamcrest:hamcrest from 2.2 to 3.0

Bumps [org.hamcrest:hamcrest](https://github.com/hamcrest/JavaHamcrest) from 2.2 to 3.0.
- [Release notes](https://github.com/hamcrest/JavaHamcrest/releases)
- [Changelog](https://github.com/hamcrest/JavaHamcrest/blob/master/CHANGES.md)
- [Commits](hamcrest/JavaHamcrest@v2.2...v3.0)

---
updated-dependencies:
- dependency-name: org.hamcrest:hamcrest
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Remove tokenAuth from Maven publishing plugin's configuration: it's obsolete.

* Bump org.slf4j:slf4j-api from 2.0.13 to 2.0.16 (#44)

Bumps org.slf4j:slf4j-api from 2.0.13 to 2.0.16.

---
updated-dependencies:
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Prepare next version

* Prepere release 1.2.1

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
vitalijr2 and dependabot[bot] authored Aug 12, 2024
1 parent 1fc9259 commit 8ba9a57
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 66 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.2.1 - 2024-08-12

- Update dependencies

## 1.2.0 - 2024-07-20

- Change group `io.github.vitalijr2.aws-lambda` -> `io.github.vitalijr2.logging`
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@
<parent>
<artifactId>aws-lambda-slf4j</artifactId>
<groupId>io.github.vitalijr2.logging</groupId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>
</project>
25 changes: 23 additions & 2 deletions json-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<artifactId>aws-lambda-slf4j-core</artifactId>
<groupId>io.github.vitalijr2.logging</groupId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<dependency>
<artifactId>json</artifactId>
Expand Down Expand Up @@ -93,6 +93,27 @@
<parent>
<artifactId>aws-lambda-slf4j</artifactId>
<groupId>io.github.vitalijr2.logging</groupId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>
<profiles>
<profile>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<offlineLinks>
<offlineLink>
<url>https://javadoc.io/doc/io.github.vitalijr2.logging/aws-lambda-slf4j-core/${project.version}/</url>
<location>${project.basedir}/../core/target/apidocs</location>
</offlineLink>
</offlineLinks>
</configuration>
</plugin>
</plugins>
</build>
<id>release</id>
</profile>
</profiles>
</project>
25 changes: 23 additions & 2 deletions logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<artifactId>aws-lambda-slf4j-core</artifactId>
<groupId>io.github.vitalijr2.logging</groupId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<!-- test -->
<dependency>
Expand Down Expand Up @@ -82,6 +82,27 @@
<parent>
<artifactId>aws-lambda-slf4j</artifactId>
<groupId>io.github.vitalijr2.logging</groupId>
<version>1.2.0</version>
<version>1.2.1</version>
</parent>
<profiles>
<profile>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<offlineLinks>
<offlineLink>
<url>https://javadoc.io/doc/io.github.vitalijr2.logging/aws-lambda-slf4j-core/${project.version}/</url>
<location>${project.basedir}/../core/target/apidocs</location>
</offlineLink>
</offlineLinks>
</configuration>
</plugin>
</plugins>
</build>
<id>release</id>
</profile>
</profiles>
</project>
121 changes: 60 additions & 61 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,21 +201,72 @@
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-sources</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalJOptions>
<additionalJOption>
-J-Dhttp.agent=maven-javadoc-plugin_${project.groupId}:${project.artifactId}
</additionalJOption>
</additionalJOptions>
<additionalOptions>
<additionalOption>--allow-script-in-comments</additionalOption>
</additionalOptions>
<bottom><![CDATA[
<script type="text/javascript" src="{@docRoot}/resources/prism.js"></script>
]]></bottom>
<docfilessubdirs>true</docfilessubdirs>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<links>
<link>https://javadoc.io/doc/org.slf4j/slf4j-api/${slf4j.version}/</link>
</links>
<offline>false</offline>
<show>public</show>
<top><![CDATA[
<link rel="stylesheet" type="text/css" href="{@docRoot}/resources/prism.css"/>
<link rel="stylesheet" type="text/css" href="{@docRoot}/resources/aws-lambda-slf4j.css"/>
]]></top>
</configuration>
<executions>
<execution>
<goals>
<goal>aggregate-jar</goal>
</goals>
<id>attach-javadocs</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>${javadoc-plugin.version}</version>
</plugin>
<plugin>
<artifactId>sign-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<groupId>org.simplify4u.plugins</groupId>
<version>1.1.0</version>
</plugin>
<plugin>
<artifactId>central-publishing-maven-plugin</artifactId>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
<extensions>true</extensions>
<groupId>org.sonatype.central</groupId>
<version>0.5.0</version>
</plugin>
Expand Down Expand Up @@ -274,7 +325,7 @@
<dependency>
<artifactId>aws-lambda-java-events</artifactId>
<groupId>com.amazonaws</groupId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>
<dependency>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -316,7 +367,7 @@
<artifactId>hamcrest</artifactId>
<groupId>org.hamcrest</groupId>
<scope>test</scope>
<version>2.2</version>
<version>3.0</version>
</dependency>
<dependency>
<artifactId>system-stubs-core</artifactId>
Expand Down Expand Up @@ -367,83 +418,31 @@
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalJOptions>
<additionalJOption>
-J-Dhttp.agent=maven-javadoc-plugin_${project.groupId}:${project.artifactId}
</additionalJOption>
</additionalJOptions>
<additionalOptions>
<additionalOption>--allow-script-in-comments</additionalOption>
</additionalOptions>
<bottom><![CDATA[
<script type="text/javascript" src="{@docRoot}/resources/prism.js"></script>
]]></bottom>
<docfilessubdirs>true</docfilessubdirs>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<links>
<link>https://javadoc.io/doc/org.slf4j/slf4j-api/${slf4j.version}/</link>
</links>
<offline>false</offline>
<show>public</show>
<top><![CDATA[
<link rel="stylesheet" type="text/css" href="{@docRoot}/resources/prism.css"/>
<link rel="stylesheet" type="text/css" href="{@docRoot}/resources/aws-lambda-slf4j.css"/>
]]></top>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-javadocs</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-sources</id>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
<plugin>
<artifactId>central-publishing-maven-plugin</artifactId>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
</configuration>
<extensions>true</extensions>
<groupId>org.sonatype.central</groupId>
</plugin>
<plugin>
<artifactId>sign-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<groupId>org.simplify4u.plugins</groupId>
</plugin>
<plugin>
<artifactId>central-publishing-maven-plugin</artifactId>
<groupId>org.sonatype.central</groupId>
</plugin>
</plugins>
</build>
<id>release</id>
</profile>
</profiles>
<properties>
<javadoc-plugin.version>3.7.0</javadoc-plugin.version>
<javadoc-plugin.version>3.8.0</javadoc-plugin.version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<mockito.version>5.12.0</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>2.0.13</slf4j.version>
<slf4j.version>2.0.16</slf4j.version>
<system-stubs.version>2.1.6</system-stubs.version>
</properties>
<scm>
Expand All @@ -452,5 +451,5 @@
<url>https://github.com/vitalijr2/aws-lambda-slf4j</url>
</scm>
<url>https://github.com/vitalijr2/aws-lambda-slf4j</url>
<version>1.2.0</version>
<version>1.2.1</version>
</project>

0 comments on commit 8ba9a57

Please sign in to comment.