Fix dependabot (#828)

pull/829/head
Michael Barry 2024-03-04 05:58:58 -05:00 zatwierdzone przez GitHub
rodzic 9f0f513dd7
commit 8396991fda
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 97 dodań i 34 usunięć

Wyświetl plik

@ -3,36 +3,36 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: maven - package-ecosystem: maven
directory: "/" directory: "/"
open-pull-requests-limit: 1 open-pull-requests-limit: 1
schedule: schedule:
interval: daily interval: daily
time: "04:30" time: "04:25"
timezone: America/New_York timezone: America/New_York
labels: labels:
- dependencies - dependencies
ignore: ignore:
- dependency-name: "com.google.protobuf:protobuf-java" - dependency-name: "com.google.protobuf:protobuf-java"
versions: [ "3.23.3" ] versions: [ "3.23.3" ]
- package-ecosystem: maven - package-ecosystem: maven
# workaround for non-standard pom.xml filename (https://github.com/dependabot/dependabot-core/issues/4425) # workaround for non-standard pom.xml filename (https://github.com/dependabot/dependabot-core/issues/4425)
directory: "/.github/planetiler-examples-dependabot" directory: "/.github/planetiler-examples-dependabot"
open-pull-requests-limit: 1 open-pull-requests-limit: 1
schedule: schedule:
interval: daily interval: daily
time: "04:30" time: "04:30"
timezone: America/New_York timezone: America/New_York
labels: labels:
- dependencies - dependencies
ignore: ignore:
- dependency-name: "com.onthegomap.planetiler:*" - dependency-name: "com.onthegomap.planetiler:*"
- package-ecosystem: github-actions - package-ecosystem: github-actions
directory: "/" directory: "/"
open-pull-requests-limit: 1 open-pull-requests-limit: 1
schedule: schedule:
interval: daily interval: daily
time: "04:30" time: "04:30"
timezone: America/New_York timezone: America/New_York
labels: labels:
- dependencies - dependencies

Wyświetl plik

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- This pom.xml gets used when this repo loaded as a submodule within https://github.com/onthegomap/planetiler -->
<!-- TODO it should be in planetiler-openmaptiles/submodule.pom.xml when this is fixed: https://github.com/dependabot/dependabot-core/issues/9193 -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openmaptiles</groupId>
<artifactId>planetiler-openmaptiles</artifactId>
<parent>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-parent</artifactId>
<version>${revision}</version>
<relativePath>./</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
</dependency>
<dependency>
<groupId>org.commonmark</groupId>
<artifactId>commonmark</artifactId>
</dependency>
<dependency>
<groupId>com.onthegomap.planetiler</groupId>
<artifactId>planetiler-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>planetiler-openmaptiles/src/main/java</sourceDirectory>
<testSourceDirectory>planetiler-openmaptiles/src/test/java</testSourceDirectory>
<plugins>
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- we don't want to deploy this module -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

Wyświetl plik

@ -85,7 +85,8 @@
<modules> <modules>
<module>planetiler-core</module> <module>planetiler-core</module>
<module>planetiler-openmaptiles/submodule.pom.xml</module> <!-- TODO replace with planetiler-openmaptiles/submodule.pom.xml when this is fixed: https://github.com/dependabot/dependabot-core/issues/9193 -->
<module>planetiler-openmaptiles.pom.xml</module>
<module>planetiler-custommap</module> <module>planetiler-custommap</module>
<module>planetiler-benchmarks</module> <module>planetiler-benchmarks</module>
<module>planetiler-examples</module> <module>planetiler-examples</module>