Maintain pom and fix sonatype url

This commit is contained in:
Stephan Schnabel 2023-04-01 12:55:50 +02:00
parent b09a0f42e8
commit b8828faddf
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
4 changed files with 20 additions and 20 deletions

View file

@ -2,6 +2,7 @@ version: 2
updates: updates:
- package-ecosystem: maven - package-ecosystem: maven
directory: / directory: /
open-pull-requests-limit: 20
schedule: schedule:
interval: monthly interval: monthly
day: monday day: monday
@ -15,6 +16,7 @@ updates:
update-types: [version-update:semver-major, version-update:semver-minor] update-types: [version-update:semver-major, version-update:semver-minor]
- package-ecosystem: github-actions - package-ecosystem: github-actions
directory: / directory: /
open-pull-requests-limit: 10
schedule: schedule:
interval: monthly interval: monthly
day: monday day: monday

View file

@ -4,7 +4,6 @@ on:
push: push:
branches: [main] branches: [main]
pull_request: {} pull_request: {}
schedule: [cron: 0 0 * * 1-5]
jobs: jobs:

View file

@ -1,7 +1,7 @@
# Micronaut Logging support # Micronaut Logging support
[![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/kokuwaio/micronaut-logging.svg?label=License)](http://www.apache.org/licenses/) [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/kokuwaio/micronaut-logging.svg?label=License)](http://www.apache.org/licenses/)
[![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.kokuwa.micronaut%22%20AND%20a:%22micronaut-logging%22) [![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://central.sonatype.com/namespace/io.kokuwa.micronaut)
[![CI](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/ci.yaml?branch=main&label=3.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3Amain) [![CI](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/ci.yaml?branch=main&label=3.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3Amain)
[![CI](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/ci.yaml?branch=4.x&label=4.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3A4.x) [![CI](https://img.shields.io/github/actions/workflow/status/kokuwaio/micronaut-logging/ci.yaml?branch=4.x&label=4.x)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/ci.yaml?query=branch%3A4.x)

35
pom.xml
View file

@ -64,7 +64,6 @@
<!-- ===================================================================== --> <!-- ===================================================================== -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.propertiesEncoding>ISO-8859-1</project.build.propertiesEncoding>
<maven.compiler.source>11</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
@ -261,13 +260,13 @@
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>${version.org.apache.maven.plugins.javadoc}</version> <version>${version.org.apache.maven.plugins.jar}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>${version.org.apache.maven.plugins.jar}</version> <version>${version.org.apache.maven.plugins.javadoc}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -312,19 +311,6 @@
</pluginManagement> </pluginManagement>
<plugins> <plugins>
<!-- add source for downstream projects -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- fail if any pom is dirty --> <!-- fail if any pom is dirty -->
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
@ -360,6 +346,19 @@
<build> <build>
<plugins> <plugins>
<!-- add source for downstream projects -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- add javadoc for downstream projects --> <!-- add javadoc for downstream projects -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>