mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 13:21:53 +01:00
Fix compilerArguments deprecation warnings (#3780)
This fixes the following warnings: ``` [WARNING] Parameter 'compilerArguments' is deprecated: use {@link #compilerArgs} instead. ``` Related to openhab/openhab-core#3512 Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
parent
096d11bf3f
commit
8c36d57692
8
pom.xml
8
pom.xml
@ -280,11 +280,11 @@ Import-Package: \\
|
||||
<version>3.10.1</version>
|
||||
<configuration>
|
||||
<compilerId>eclipse</compilerId>
|
||||
<compilerArguments>
|
||||
<annotationpath>CLASSPATH</annotationpath>
|
||||
<classpath>${project.build.directory}/dependency</classpath>
|
||||
</compilerArguments>
|
||||
<compilerArgs>
|
||||
<arg>-annotationpath</arg>
|
||||
<arg>CLASSPATH</arg>
|
||||
<arg>-classpath</arg>
|
||||
<arg>${project.build.directory}/dependency</arg>
|
||||
<arg>-err:+nullAnnot(org.eclipse.jdt.annotation.Nullable|org.eclipse.jdt.annotation.NonNull|org.eclipse.jdt.annotation.NonNullByDefault),+inheritNullAnnot,+nullAnnotConflict,-nullUncheckedConversion</arg>
|
||||
<arg>-warn:+null,+inheritNullAnnot,+nullAnnotConflict,-nullUncheckedConversion,+nullAnnotRedundant,+nullDereference</arg>
|
||||
</compilerArgs>
|
||||
|
Loading…
Reference in New Issue
Block a user