Removed version specification, updated dependabot

This commit is contained in:
Stephan Schnabel 2023-07-31 14:30:05 +02:00
parent 12da7acd30
commit 3265af15ba
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
3 changed files with 18 additions and 32 deletions

View file

@ -3,19 +3,23 @@ updates:
- package-ecosystem: maven - package-ecosystem: maven
directory: / directory: /
schedule: schedule:
interval: monthly interval: daily
day: monday
ignore:
# logback 1.3 and 1.4 are compatible with slf4j 2.x only and not supported right now
- dependency-name: ch.qos.logback:logback-classic
update-types: [version-update:semver-major, version-update:semver-minor]
- dependency-name: org.slf4j:slf4j-api
update-types: [version-update:semver-major]
# micronaut 4 will ship logback 1.4
- dependency-name: io.micronaut:*
update-types: [version-update:semver-major]
- package-ecosystem: github-actions - package-ecosystem: github-actions
directory: / directory: /
schedule: schedule:
interval: monthly interval: monthly
day: monday day: monday
- package-ecosystem: maven
directory: /
target-branch: 3.x
schedule:
interval: daily
ignore:
- dependency-name: io.micronaut:*
update-types: [version-update:semver-major]
- package-ecosystem: github-actions
directory: /
target-branch: 3.x
schedule:
interval: monthly
day: monday

View file

@ -1,6 +1,6 @@
# Micronaut Logging support # Micronaut Logging support
[![Apache License 2.0](https://img.shields.io/github/license/kokuwaio/helm-maven-plugin)](https://github.com/kokuwaio/micronaut-logging/blob/main/LICENSE) [![Apache License 2.0](https://img.shields.io/github/license/kokuwaio/micronaut-logging)](https://github.com/kokuwaio/micronaut-logging/blob/main/LICENSE)
[![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging)](https://central.sonatype.com/namespace/io.kokuwa.micronaut) [![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging)](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
[![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/build.yaml?branch=main)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3Amain) [![Build](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/build.yaml?branch=main)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3Amain)

22
pom.xml
View file

@ -65,13 +65,13 @@
<maven.compiler.source>17</maven.compiler.source> <maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target> <maven.compiler.target>17</maven.compiler.target>
<invoker.parallelThreads>1C</invoker.parallelThreads>
<!-- ===================================================================== --> <!-- ===================================================================== -->
<!-- ============================= Versions ============================== --> <!-- ============================= Versions ============================== -->
<!-- ===================================================================== --> <!-- ===================================================================== -->
<version.io.micronaut>4.0.0</version.io.micronaut> <version.io.micronaut>4.0.0</version.io.micronaut>
<version.org.slf4j>2.0.7</version.org.slf4j>
<version.ch.qos.logback>1.4.8</version.ch.qos.logback>
</properties> </properties>
@ -84,21 +84,6 @@
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.org.slf4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.ch.qos.logback}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${version.ch.qos.logback}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
@ -200,9 +185,6 @@
<goal>integration-test</goal> <goal>integration-test</goal>
<goal>verify</goal> <goal>verify</goal>
</goals> </goals>
<configuration>
<parallelThreads>0.5C</parallelThreads>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>