-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: compatible with Maven 4 #9
Conversation
gnodet
commented
Sep 23, 2024
- feat: support Maven 4.0
- back pick Support Maven 4 and JDK 21 at build time trustin/os-maven-plugin#74
- try test maven 4.0.0-beta-4
- tidy
- Remove the mvn4 specific bits
Signed-off-by: tison <[email protected]>
Signed-off-by: tison <[email protected]>
Signed-off-by: tison <[email protected]>
Signed-off-by: tison <[email protected]>
@gnodet Thank you! I'm going to integrate with you changes, merge and release. But still, I wonder how the removed part are "supporting Maven 4", so that I may pick up this topic later to deliver a good integration :D |
The |
Yes. As long as Maven 4 is released or the API is relatively stable, and there are enough docs to start with, I'd write a |
OK. Then Let me merge and release this patch today. Thanks again for your information. |
I found that this is actually a fix. So I publish 0.3.1 for it. @linghengqian you can try to replace the os-maven-plugin with: <build>
<extensions>
<extension>
<groupId>com.tisonkun.os</groupId>
<artifactId>os-detector-maven-plugin</artifactId>
<version>0.3.1</version>
</extension>
</extensions>
</build>
<dependencies>
<dependency>
<groupId>org.apache.opendal</groupId>
<artifactId>opendal</artifactId>
<version>${opendal.version}</version>
</dependency>
<dependency>
<groupId>org.apache.opendal</groupId>
<artifactId>opendal</artifactId>
<version>${opendal.version}</version>
<classifier>${os.detected.classifier}</classifier>
</dependency>
</dependencies> The same user experience. |
|