Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update sisu-mojos to 0.3.5 #1

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
sisu-mojos (0.3.5-1) unstable; urgency=medium

* New upstream release
* Fixed the build failure with maven-common-artifact-filters 3.3
(Closes: #1028855)
* Standards-Version updated to 4.6.2

-- Emmanuel Bourg <[email protected]> Sun, 15 Jan 2023 17:25:07 +0100

sisu-mojos (0.3.4-2) unstable; urgency=medium

* Source only upload
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Build-Depends:
libsisu-inject-java (>= 0.3.4),
libslf4j-java (>= 1.6.4),
maven-debian-helper (>= 2.1)
Standards-Version: 4.5.1
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/java-team/sisu-mojos.git
Vcs-Browser: https://salsa.debian.org/java-team/sisu-mojos
Homepage: https://www.eclipse.org/sisu/
Expand Down
17 changes: 17 additions & 0 deletions debian/patches/01-missing-maven-dependency.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Description: Adds the missing dependency on maven-core
Author: Emmanuel Bourg <[email protected]>
Bug: https://github.com/eclipse/sisu.mojos/issues/9
--- a/pom.xml
+++ b/pom.xml
@@ -103,6 +103,11 @@
-->
<dependency>
<groupId>org.apache.maven</groupId>
+ <artifactId>maven-core</artifactId>
+ <version>debian</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0</version>
<exclusions>
1 change: 1 addition & 0 deletions debian/patches/series
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
01-missing-maven-dependency.patch
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<packaging>maven-plugin</packaging>

<name>Sisu Maven Plugin</name>
Expand Down Expand Up @@ -132,7 +132,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0.17</version>
<version>3.0.24</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Loading