-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from virtualsatellite/integration
Release 4.10.0
- Loading branch information
Showing
33 changed files
with
438 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
andriikovalov-dlr <andrii.kovalov@dlr.de> andriikovalov-dlr <48556822+andriikovalov-dlr@users.noreply.github.com> | ||
andriikovalov-dlr <andrii.kovalov@dlr.de> kova_an <andrii.kovalov@dlr.de> | ||
|
||
franzTobiasDLR <tobias.franz@dlr.de> franzTobiasDLR <49645871+franzTobiasDLR@users.noreply.github.com> | ||
franzTobiasDLR <tobias.franz@dlr.de> Tobias Franz <tobias.franz@dlr.de> | ||
|
||
SaMuellerDLR <sa.mueller@dlr.de> Müller, Sascha ( SC-SRV ) <sa.mueller@dlr.de> | ||
SaMuellerDLR <sa.mueller@dlr.de> SaMuellerDLR <48356419+SaMuellerDLR@users.noreply.github.com> | ||
SaMuellerDLR <sa.mueller@dlr.de> Sascha Müller <sa.mueller@dlr.de> | ||
|
||
PhilMFischer <philipp.fischer@dlr.de> Philipp M. Fischer <35496033+PhilMFischer@users.noreply.github.com> | ||
PhilMFischer <philipp.fischer@dlr.de> Philipp M. Fischer <philipp.fischer@dlr.de> | ||
|
||
TjorveKujathDLR <tjorve.kujath@dlr.de> Tjorve Kujath <tjorve.kujath@dlr.de> |
4 changes: 2 additions & 2 deletions
4
...settings/org.eclipse.core.resources.prefs → .settings/org.eclipse.core.resources.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
line.separator=\n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
#!/bin/bash | ||
|
||
#/******************************************************************************* | ||
# * Copyright (c) 2008-2019 German Aerospace Center (DLR), Simulation and Software Technology, Germany. | ||
# * | ||
# * This program and the accompanying materials are made available under the | ||
# * terms of the Eclipse Public License 2.0 which is available at | ||
# * http://www.eclipse.org/legal/epl-2.0. | ||
# * | ||
# * SPDX-License-Identifier: EPL-2.0 | ||
# *******************************************************************************/ | ||
|
||
# -------------------------------------------------------------------------- | ||
# This script handles the different calls to maven | ||
# -------------------------------------------------------------------------- | ||
|
||
# fail the script if a call fails | ||
set -e | ||
|
||
# Store the name of the command calling from commandline to be properly | ||
# displayed in case of usage issues | ||
COMMAND=$0 | ||
|
||
# this method gives some little usage info | ||
printUsage() { | ||
echo "usage: ${COMMAND} -j [assemble] -p [development|integration|release]" | ||
echo "" | ||
echo "Options:" | ||
echo " -j, --jobs <jobname> The name of the Travis-CI job to be build." | ||
echo " -p, --profile <profile> The name of the maven profile to be build." | ||
echo "" | ||
echo "Jobname:" | ||
echo " assemble To run full assemble including the java docs build." | ||
echo "" | ||
echo "Profile:" | ||
echo " development Maven profile for development and feature builds." | ||
echo " integration Maven profile for integration builds." | ||
echo " release Maven profile for release builds. Fails to overwrite deployments." | ||
echo "" | ||
echo "Copyright by DLR (German Aerospace Center)" | ||
} | ||
|
||
checkforMavenProblems() { | ||
echo "Check for Maven Problems on Product:" | ||
(grep -n "\[\(WARN\|WARNING\|ERROR\)\]" maven.log \ | ||
| grep -v "\[WARNING\] Checksum validation failed" \ | ||
| grep -v "\[WARNING\] Could not validate integrity of download" \ | ||
| grep -v "\[WARNING\] The following locally built units have been used" \ | ||
| grep -v "\[WARNING\] tooling" \ | ||
|| exit 0 && exit 1;) | ||
} | ||
|
||
callMavenAssemble() { | ||
if [ "$MAVEN_PROFILE" == "release" ] ; then | ||
DEPLOY_TYPE="deployBackuped" | ||
else | ||
DEPLOY_TYPE="deployUnsecured" | ||
fi | ||
echo "Maven - Assemlbe - ${MAVEN_PROFILE} - ${DEPLOY_TYPE}" | ||
(grep -n "\[\(WARN\|ERROR\)\]" maven.log || exit 0 && exit 1;) | ||
mvn clean install -P ${MAVEN_PROFILE},${DEPLOY_TYPE} -B -V | tee maven.log | ||
checkforMavenProblems | ||
} | ||
|
||
|
||
# process all command line arguments | ||
while [ "$1" != "" ]; do | ||
case $1 in | ||
-j | --jobs ) shift | ||
TRAVIS_JOB=$1 | ||
;; | ||
-p | --profile ) shift | ||
MAVEN_PROFILE=$1 | ||
;; | ||
-h | --help ) printUsage | ||
exit | ||
;; | ||
* ) printUsage | ||
exit 1 | ||
esac | ||
shift | ||
done | ||
|
||
case $MAVEN_PROFILE in | ||
development ) ;; | ||
integration ) ;; | ||
release ) ;; | ||
* ) printUsage | ||
exit 1 | ||
esac | ||
|
||
# Decide which job to run | ||
case $TRAVIS_JOB in | ||
assemble ) callMavenAssemble | ||
exit | ||
;; | ||
* ) printUsage | ||
exit 1 | ||
esac |
Oops, something went wrong.