Skip to content

Commit

Permalink
Merge pull request #47 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
jglick authored Mar 6, 2023
2 parents 2b2f684 + c2606f5 commit 743384d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
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:
interval: "weekly"
5 changes: 5 additions & 0 deletions maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<properties>
<maven-plugin-tools.version>3.7.1</maven-plugin-tools.version>
</properties>

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

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.version>3.9.0</maven.version>
<maven.version>3.8.1</maven.version>
</properties>
<modules>
<module>lib</module>
Expand Down

0 comments on commit 743384d

Please sign in to comment.