Skip to content

Commit

Permalink
Manager libraries no longer required to be checked in.
Browse files Browse the repository at this point in the history
  • Loading branch information
rrowlands committed Nov 7, 2019
1 parent 32c0a5d commit 9b76f52
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,17 @@
**/bin/**
**/.DS_Store
tomcat-remote-listener/dependency-reduced-pom.xml
standalone/backup-manager-1.0.0/lib/**
standalone/ddms-initializer-1.0.0/lib/**
standalone/geo-manager-1.0.0/lib/**
standalone/manager-1.0.0/lib/**
standalone/synch-manager-1.0.0/lib/**
installer-stage/ODKAggregate/**
installer-stage/webapp/**
build/installer.exe
build/patcher.exe
build/InstallDDMSblank-*.exe
build/patch-*.exe
DDMS/profiles/MDSS.properties
DDMS/profiles/MDSS-MALARIA.properties
DDMS/profiles/MDSS-DENGUE.properties
4 changes: 2 additions & 2 deletions installer-stage/Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -344,14 +344,14 @@ Section -Main SEC0000
SetOutPath $INSTDIR

# These version numbers are automatically regexed by ant
StrCpy $PatchVersion 1572471296
StrCpy $PatchVersion 1573090650
StrCpy $RootsVersion 1572381298
StrCpy $MenuVersion 1572381298
StrCpy $LocalizationVersion 1572381298
StrCpy $PermissionsVersion 1572381298
StrCpy $RunwayVersion 1572056769
StrCpy $IdVersion 7686
StrCpy $ManagerVersion 1572471296
StrCpy $ManagerVersion 1573090650
StrCpy $BirtVersion 1572056769
StrCpy $EclipseVersion 1572056769
StrCpy $WebappsVersion 1524675281
Expand Down
4 changes: 2 additions & 2 deletions patch/all-in-one-patch.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ Section -Main SEC0000
# The version numbers are automatically replaced by all-in-one-patch.xml
StrCpy $RunwayVersion 1572056769
StrCpy $MetadataVersion 7688
StrCpy $ManagerVersion 1572471296
StrCpy $PatchVersion 1572471296
StrCpy $ManagerVersion 1573090650
StrCpy $PatchVersion 1573090650
StrCpy $RootsVersion 1572381298
StrCpy $MenuVersion 1572381298
StrCpy $LocalizationVersion 1572381298
Expand Down
12 changes: 9 additions & 3 deletions standalone/buildall.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,26 @@ if %errorlevel% neq 0 exit /b %errorlevel%

call mvn -U -f ..\tomcat-remote-listener\pom.xml clean install
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\tomcat-remote-listener\target\tomcat-remote-listener.jar C:\git\DDMS\standalone\manager-1.0.0\lib\tomcat-remote-listener-1.0.1.jar
call mvn -U -f ..\manager\pom.xml dependency:copy-dependencies -DoutputDirectory=C:\git\DDMS\standalone\manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\tomcat-remote-listener\target\tomcat-remote-listener.jar C:\git\DDMS\standalone\manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%

call mvn -U -f ..\manager\pom.xml clean install
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\manager\target\manager-1.0.0.jar C:\git\DDMS\standalone\manager-1.0.0\lib\manager-1.0.0.jar
call mvn -U -f ..\manager\pom.xml dependency:copy-dependencies -DoutputDirectory=C:\git\DDMS\standalone\manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\manager\target\manager-1.0.0.jar C:\git\DDMS\standalone\manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%

cmd /c "%ANT_HOME%\bin\ant" -Dbasedir=..\ddms-initializer -buildfile ..\ddms-initializer\scripts\deploy.xml -Dmdss.admin=C:\git\DDMS\standalone -Dmdss.root=C:\git\DDMS\DDMS -Dswt.jar=C:\Users\Administrator\.m2\repository\org\eclipse\swt\org\eclipse\swt\win32\win32\x86_64\4\3\swt\org.eclipse.swt.win32.win32.x86_64\4.3\org.eclipse.swt.win32.win32.x86_64-4.3.jar deploy
if %errorlevel% neq 0 exit /b %errorlevel%

call mvn -U -f ..\backup-manager\pom.xml clean install
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\backup-manager\target\backup-manager-1.0.0.jar C:\git\DDMS\standalone\backup-manager-1.0.0\lib\backup-manager-1.0.0.jar
call mvn -U -f ..\manager\pom.xml dependency:copy-dependencies -DoutputDirectory=C:\git\DDMS\standalone\backup-manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%
xcopy /y ..\backup-manager\target\backup-manager-1.0.0.jar C:\git\DDMS\standalone\backup-manager-1.0.0\lib
if %errorlevel% neq 0 exit /b %errorlevel%

cmd /c "%ANT_HOME%\bin\ant" -Dbasedir=..\MDSSGISI -buildfile ..\MDSSGISI\scripts\deploy.xml -Dmdss.admin=C:\git\DDMS\standalone -Dmdss.root=C:\git\DDMS\DDMS -Dswt.jar=C:\Users\Administrator\.m2\repository\org\eclipse\swt\org\eclipse\swt\win32\win32\x86_64\4\3\swt\org.eclipse.swt.win32.win32.x86_64\4.3\org.eclipse.swt.win32.win32.x86_64-4.3.jar deploy
Expand Down

0 comments on commit 9b76f52

Please sign in to comment.