Codebase as of c53e4aed26 as an initial commit for the shrunk repo
Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
40
bundles/create_openhab_binding_skeleton.cmd
Normal file
40
bundles/create_openhab_binding_skeleton.cmd
Normal file
@@ -0,0 +1,40 @@
|
||||
@echo off
|
||||
|
||||
SETLOCAL
|
||||
SET ARGC=0
|
||||
|
||||
FOR %%x IN (%*) DO SET /A ARGC+=1
|
||||
|
||||
IF %ARGC% NEQ 3 (
|
||||
echo Usage: %0 BindingIdInCamelCase Author GithubUser
|
||||
exit /B 1
|
||||
)
|
||||
|
||||
SET OpenhabVersion="3.0.0-SNAPSHOT"
|
||||
|
||||
SET BindingIdInCamelCase=%~1
|
||||
SET BindingIdInLowerCase=%BindingIdInCamelCase%
|
||||
SET Author=%~2
|
||||
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%"
|
||||
|
||||
COPY ..\src\etc\NOTICE org.openhab.binding.%BindingIdInLowerCase%\
|
||||
|
||||
(SET BindingIdInLowerCase=)
|
||||
(SET BindingIdInCamelCase=)
|
||||
(SET Author=)
|
||||
(SET GithubUser=)
|
||||
|
||||
GOTO:EOF
|
||||
|
||||
|
||||
:LoCase
|
||||
:: Subroutine to convert a variable VALUE to all lower case.
|
||||
:: The argument for this subroutine is the variable NAME.
|
||||
FOR %%i IN ("A=a" "B=b" "C=c" "D=d" "E=e" "F=f" "G=g" "H=h" "I=i" "J=j" "K=k" "L=l" "M=m" "N=n" "O=o" "P=p" "Q=q" "R=r" "S=s" "T=t" "U=u" "V=v" "W=w" "X=x" "Y=y" "Z=z") DO CALL SET "%1=%%%1:%%~i%%"
|
||||
GOTO:EOF
|
||||
|
||||
ENDLOCAL
|
||||
Reference in New Issue
Block a user