Fridrich Strba 2024-06-10 18:01:15 +00:00 committed by Git OBS Bridge
parent 4113d07d5c
commit 2e42203e85
2 changed files with 6 additions and 2 deletions

View File

@ -82,8 +82,11 @@
depends="compile"
description="Generate Plexus component.xml">
<mkdir dir="${build.outputDir}/META-INF/plexus"/>
<pathconvert property="classpath.string" pathsep=":">
<path refid="build.classpath"/>
</pathconvert>
<exec executable="plexus-metadata-generator" failonerror="true">
<env key="CLASSPATH" value="${build.outputDir}"/>
<env key="CLASSPATH" value="${build.outputDir}:${classpath.string}"/>
<arg value="-s"/>
<arg value="${build.srcDir}"/>
<arg value="-c"/>

View File

@ -1,7 +1,8 @@
-------------------------------------------------------------------
Mon Jun 10 16:29:15 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Add dependency on jakarta-inject, needed by google-guice 6.0.0
- Use plexus-metadata-generator executable directly to simplify
build classpath
-------------------------------------------------------------------
Tue Apr 2 17:20:27 UTC 2024 - Fridrich Strba <fstrba@suse.com>