Fix deprecated Maven expressions usage
Motivation: Parent pom.xml uses deprecated maven expressions, such as `${groupId}` which should be ${project.groupId}. This causes tons of warnings on every module in the build. Modifications: Use up to date syntax. Result: No more maven warnings.
This commit is contained in:
parent
c2c0d01ddb
commit
0e5a3f9db5
8
pom.xml
8
pom.xml
@ -735,11 +735,11 @@
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||
<Bundle-Name>${name}</Bundle-Name>
|
||||
<Bundle-SymbolicName>${groupId}.${artifactId}.source</Bundle-SymbolicName>
|
||||
<Bundle-Vendor>${organization.name}</Bundle-Vendor>
|
||||
<Bundle-Name>${project.name}</Bundle-Name>
|
||||
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}.source</Bundle-SymbolicName>
|
||||
<Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
|
||||
<Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
|
||||
<Eclipse-SourceBundle>${groupId}.${artifactId};version="${parsedVersion.osgiVersion}";roots:="."</Eclipse-SourceBundle>
|
||||
<Eclipse-SourceBundle>${project.groupId}.${project.artifactId};version="${parsedVersion.osgiVersion}";roots:="."</Eclipse-SourceBundle>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
|
Loading…
Reference in New Issue
Block a user