mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02: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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user