This is to avoid compilation issues after class renamed in lsp4e. If lsp4e undoes the rename as requested in this bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=549859 Then this commit can/should be reverted.
9 lines
165 B
Bash
Executable File
9 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
workdir=`pwd`
|
|
cd ../headless-services
|
|
./mvnw clean install -Dmaven.test.skip=true
|
|
|
|
cd $workdir
|
|
./mvnw -Pe412 clean install -Dmaven.test.skip=true
|