org.hl7.fhir.core/release.bat

26 lines
1.3 KiB
Batchfile
Raw Normal View History

2019-03-15 14:26:38 -04:00
REM replace versions before running
REM make sure you are committed
2019-05-20 20:39:51 -04:00
@echo off
2019-03-16 18:23:24 -04:00
echo
2019-05-20 20:39:51 -04:00
echo =====================================================================
echo upgrade and release fhir.core from 3.7.34-SNAPSHOT to 3.7.35-SNAPSHOT
echo =====================================================================
echo
echo check versions and make sure committed...
2019-03-15 14:26:38 -04:00
pause
2019-05-20 20:39:51 -04:00
call mvn versions:set -DnewVersion=3.7.35-SNAPSHOT
2019-03-15 14:26:38 -04:00
call git commit -a -m "Release new version"
call git push origin master
2019-05-20 20:39:51 -04:00
call "C:\tools\fnr.exe" --cl --dir "C:\work\org.hl7.fhir\build" --fileMask "*.java" --includeSubDirectories --find "3.7.34-SNAPSHOT" --replace "3.7.35-SNAPSHOT"
call "C:\tools\fnr.exe" --cl --dir "C:\work\org.hl7.fhir\fhir-ig-publisher" --fileMask "*.xml" --includeSubDirectories --find "3.7.34-SNAPSHOT" --replace "3.7.35-SNAPSHOT"
call "C:\tools\fnr.exe" --cl --dir "C:\work\org.hl7.fhir\build" --fileMask "*.xml" --find "3.7.34-SNAPSHOT" --replace "3.7.35-SNAPSHOT"
2019-03-15 14:26:38 -04:00
call mvn deploy
2019-05-20 20:39:51 -04:00
call python c:\tools\zulip-api\zulip\zulip\send.py --stream committers/notification --subject "java core" -m "New Java Core v3.7.35-SNAPSHOT released." --config-file zuliprc
2019-03-15 14:26:38 -04:00
echo ===============================================================
echo all done
echo ===============================================================
pause