-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
111 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "maven" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
ignore: | ||
- dependency-name: "io.quarkus:quarkus-bom" | ||
- dependency-name: "io.quarkus:quarkus-extension-processor" | ||
- dependency-name: "io.quarkus:quarkus-maven-plugin" | ||
- dependency-name: "io.quarkus:quarkus-extension-maven-plugin" | ||
- dependency-name: "io.quarkus:quarkus-config-doc-maven-plugin" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,95 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.quarkiverse</groupId> | ||
<artifactId>quarkiverse-parent</artifactId> | ||
<version>16</version> | ||
</parent> | ||
<groupId>io.quarkiverse.playwright</groupId> | ||
<artifactId>quarkus-playwright-parent</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>Quarkus Playwright - Parent</name> | ||
<modules> | ||
<!--<module>deployment</module>--> | ||
<module>testing</module> | ||
</modules> | ||
<scm> | ||
<connection>scm:git:[email protected]:quarkiverse/quarkus-playwright.git</connection> | ||
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-playwright.git</developerConnection> | ||
<url>https://github.com/quarkiverse/quarkus-playwright</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<properties> | ||
<compiler-plugin.version>3.13.0</compiler-plugin.version> | ||
<maven.compiler.release>11</maven.compiler.release> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<quarkus.version>3.3.1</quarkus.version> | ||
<playright.version>1.44.0</playright.version> | ||
</properties> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-bom</artifactId> | ||
<version>${quarkus.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-maven-plugin</artifactId> | ||
<version>${quarkus.version}</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${compiler-plugin.version}</version> | ||
<configuration> | ||
<compilerArgs> | ||
<arg>-parameters</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>docs</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>!true</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>docs</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>it</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>!true</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>integration-tests</module> | ||
</modules> | ||
</profile> | ||
</profiles> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.quarkiverse</groupId> | ||
<artifactId>quarkiverse-parent</artifactId> | ||
<version>16</version> | ||
</parent> | ||
<groupId>io.quarkiverse.playwright</groupId> | ||
<artifactId>quarkus-playwright-parent</artifactId> | ||
<version>999-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>Quarkus Playwright - Parent</name> | ||
<modules> | ||
<!--<module>deployment</module>--> | ||
<module>testing</module> | ||
</modules> | ||
<scm> | ||
<connection>scm:git:[email protected]:quarkiverse/quarkus-playwright.git</connection> | ||
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-playwright.git</developerConnection> | ||
<url>https://github.com/quarkiverse/quarkus-playwright</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<properties> | ||
<compiler-plugin.version>3.13.0</compiler-plugin.version> | ||
<maven.compiler.release>17</maven.compiler.release> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<quarkus.version>3.15.1</quarkus.version> | ||
<playright.version>1.48.0</playright.version> | ||
</properties> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-bom</artifactId> | ||
<version>${quarkus.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-maven-plugin</artifactId> | ||
<version>${quarkus.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-config-doc-maven-plugin</artifactId> | ||
<version>${version.quarkus}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${compiler-plugin.version}</version> | ||
<configuration> | ||
<compilerArgs> | ||
<arg>-parameters</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>docs</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>!true</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>docs</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>it</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>!true</value> | ||
</property> | ||
</activation> | ||
<modules> | ||
<module>integration-tests</module> | ||
</modules> | ||
</profile> | ||
</profiles> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters