Skip to content

Commit

Permalink
Merge pull request #34 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 committed Mar 8, 2023
2 parents 330680e + 33dc688 commit aab2a18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ updates:
ignore:
# Ignore 1.2.0-atlassian-2
- dependency-name: "jaxen:jaxen"
# 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
6 changes: 5 additions & 1 deletion maven-jellydoc-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</build>

<properties>
<maven.version>3.9.0</maven.version>
<maven.version>3.8.1</maven.version>
<plexus.version>2.1.1</plexus.version>
<maven-plugin-tools.version>3.8.1</maven-plugin-tools.version>
<!-- TODO fix violations -->
Expand All @@ -76,6 +76,10 @@
<maven.site.deploy.skip>true</maven.site.deploy.skip>
</properties>

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

<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit aab2a18

Please sign in to comment.