Skip to content
Open
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
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ under the License.
<project.build.outputTimestamp>2026-05-16T08:21:34Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<!-- check to remove with next version of maven-dependency-analyzer -->
<!-- manage version to support JDK 27 -->
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.10</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- maven -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public PropertiesMojo(MavenProject project, ResolverUtil resolverUtil) {
* &lt;/extraArtifact&gt;
* &lt;/extraArtifacts&gt;
* </pre>
* @since 3.10.1
* @since 3.11.0
*/
@Parameter
private List<ParamArtifact> extraArtifacts;
Expand Down
Loading