Skip to content

Commit

Permalink
Merge pull request #52 from jtnord/fix-maven-libs
Browse files Browse the repository at this point in the history
set maven libs according to consumers
  • Loading branch information
jtnord authored Mar 9, 2023
2 parents 2783062 + 61cfa89 commit a04fea0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ updates:
directory: "/"
schedule:
interval: "weekly"
ignore:
# maven core artifacts are provided by the running maven, do not update to prevent consuming something unavailable
- dependency-name: "org.apache.maven:*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
7 changes: 6 additions & 1 deletion injector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@
<properties>
<asm.version>9.4</asm.version>
<maven-plugin-tools.version>3.8.1</maven-plugin-tools.version>
<maven.version>3.8.1</maven.version>
</properties>

<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -144,7 +149,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.0</version>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit a04fea0

Please sign in to comment.