summaryrefslogtreecommitdiffstats
path: root/java/sca/distribution/features/etc/generate-pom.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xjava/sca/distribution/features/etc/generate-pom.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/sca/distribution/features/etc/generate-pom.sh b/java/sca/distribution/features/etc/generate-pom.sh
index b901f8cffc..2a198eb3f2 100755
--- a/java/sca/distribution/features/etc/generate-pom.sh
+++ b/java/sca/distribution/features/etc/generate-pom.sh
@@ -20,6 +20,8 @@
cat pom.xml | awk 'BEGIN { i=0 } /<profiles>/ { i=1; print } /.*/ { if (i==0) print } '
+echo ""
+echo " <!-- Profile that can be used to build the modules included in the distro -->"
echo " <profile>"
echo " <id>modules</id>"
echo " <modules>"
@@ -28,7 +30,6 @@ mvn -o dependency:list | awk '/.INFO. (.*.tuscany.sca):(tuscany-)(.*):(.*):(.
echo " </modules>"
echo " </profile>"
-echo ""
cat pom.xml | awk 'BEGIN { i=0 } /<\/profiles>/ { i=1 } /.*/ { if (i==1) print } '