Ignore spotless errors on binding creation (#10696)
Signed-off-by: Patrick Fink <mail@pfink.de>pull/10712/head
parent
9ba28a50cc
commit
80c0915b80
|
@ -19,7 +19,7 @@ SET GithubUser=%~3
|
|||
|
||||
call :LoCase BindingIdInLowerCase
|
||||
|
||||
call mvn -s archetype-settings.xml archetype:generate -N -DarchetypeGroupId=org.openhab.core.tools.archetypes -DarchetypeArtifactId=org.openhab.core.tools.archetypes.binding -DarchetypeVersion=%OpenhabVersion% -DgroupId=org.openhab.binding -DartifactId=org.openhab.binding.%BindingIdInLowerCase% -Dpackage=org.openhab.binding.%BindingIdInLowerCase% -Dversion=%OpenhabVersion% -DbindingId=%BindingIdInLowerCase% -DbindingIdCamelCase=%BindingIdInCamelCase% -DvendorName=openHAB -Dnamespace=org.openhab -Dauthor="%Author%" -DgithubUser="%GithubUser%"
|
||||
call mvn -s archetype-settings.xml archetype:generate -N -Dspotless.check.skip=true -DarchetypeGroupId=org.openhab.core.tools.archetypes -DarchetypeArtifactId=org.openhab.core.tools.archetypes.binding -DarchetypeVersion=%OpenhabVersion% -DgroupId=org.openhab.binding -DartifactId=org.openhab.binding.%BindingIdInLowerCase% -Dpackage=org.openhab.binding.%BindingIdInLowerCase% -Dversion=%OpenhabVersion% -DbindingId=%BindingIdInLowerCase% -DbindingIdCamelCase=%BindingIdInCamelCase% -DvendorName=openHAB -Dnamespace=org.openhab -Dauthor="%Author%" -DgithubUser="%GithubUser%"
|
||||
|
||||
COPY ..\src\etc\NOTICE org.openhab.binding.%BindingIdInLowerCase%\
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@ author=$2
|
|||
githubUser=$3
|
||||
|
||||
mvn -s archetype-settings.xml archetype:generate -N \
|
||||
-Dspotless.check.skip=true \
|
||||
-DarchetypeGroupId=org.openhab.core.tools.archetypes \
|
||||
-DarchetypeArtifactId=org.openhab.core.tools.archetypes.binding \
|
||||
-DarchetypeVersion=$openHABVersion \
|
||||
|
|
Loading…
Reference in New Issue