Skip to content

Commit

Permalink
[1213] Add compile.sh scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
frbattid committed Oct 14, 2016
1 parent 14ff943 commit 33fac93
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 0 deletions.
36 changes: 36 additions & 0 deletions compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#
# Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
#
# This file is part of fiware-cygnus (FI-WARE project).
#
# fiware-cygnus is free software: you can redistribute it and/or modify it under the terms of the GNU Affero
# General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
# fiware-cygnus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License along with fiware-cygnus. If not, see
# http://www.gnu.org/licenses/.
#
# For those usages not covered by the GNU Affero General Public License please contact with iot_support at tid dot es
#

# Author: frb

# Show the usage
if [ $# -ne 2 ]; then
echo "Usage:"
echo " compile.sh <version> <flume_base_path>"
exit 1
fi

# Input parameters
version=$1
flumeBasePath=$2

# Compile everything
cd cygnus-common/
./compile.sh $version $flumeBasePath
cd ../cygnus-ngsi/
./compile.sh $version $flumeBasePath
40 changes: 40 additions & 0 deletions cygnus-common/compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#
# Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
#
# This file is part of fiware-cygnus (FI-WARE project).
#
# fiware-cygnus is free software: you can redistribute it and/or modify it under the terms of the GNU Affero
# General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
# fiware-cygnus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License along with fiware-cygnus. If not, see
# http://www.gnu.org/licenses/.
#
# For those usages not covered by the GNU Affero General Public License please contact with iot_support at tid dot es
#

# Author: frb

# Show the usage
if [ $# -ne 2 ]; then
echo "Usage:"
echo " compile.sh <version> <flume_base_path>"
exit 1
fi

# Input parameters
version=$1
flumeBasePath=$2

# Export some Maven options
export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"

# Compile
mvn clean compile assembly:single exec:exec

# Install
cp target/cygnus-common-$version-jar-with-dependencies.jar $flumeBasePath/plugins.d/cygnus/libext/
mvn install:install-file -Dfile=$flumeBasePath/plugins.d/cygnus/libext/cygnus-common-$version-jar-with-dependencies.jar -DgroupId=com.telefonica.iot -DartifactId=cygnus-common -Dversion=$version -Dpackaging=jar -DgeneratePom=true
39 changes: 39 additions & 0 deletions cygnus-ngsi/compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#
# Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
#
# This file is part of fiware-cygnus (FI-WARE project).
#
# fiware-cygnus is free software: you can redistribute it and/or modify it under the terms of the GNU Affero
# General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
# fiware-cygnus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
# for more details.
#
# You should have received a copy of the GNU Affero General Public License along with fiware-cygnus. If not, see
# http://www.gnu.org/licenses/.
#
# For those usages not covered by the GNU Affero General Public License please contact with iot_support at tid dot es
#

# Author: frb

# Show the usage
if [ $# -ne 2 ]; then
echo "Usage:"
echo " compile.sh <version> <flume_base_path>"
exit 1
fi

# Input parameters
version=$1
flumeBasePath=$2

# Export some Maven options
export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"

# Compile
mvn clean compile assembly:single exec:exec

# Install
cp target/cygnus-ngsi-$version-jar-with-dependencies.jar $flumeBasePath/plugins.d/cygnus/lib/

0 comments on commit 33fac93

Please sign in to comment.