Removed version specification, updated dependabot
This commit is contained in:
parent
12da7acd30
commit
3265af15ba
3 changed files with 18 additions and 32 deletions
26
.github/dependabot.yml
vendored
26
.github/dependabot.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Micronaut Logging support
|
# Micronaut Logging support
|
||||||
|
|
||||||
[](https://github.com/kokuwaio/micronaut-logging/blob/main/LICENSE)
|
[](https://github.com/kokuwaio/micronaut-logging/blob/main/LICENSE)
|
||||||
[](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
|
[](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
|
||||||
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3Amain)
|
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/build.yaml?query=branch%3Amain)
|
||||||
|
|
||||||
|
|
22
pom.xml
22
pom.xml
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue