Merge pull request #730 from rasika/master

Fixing https://github.com/wso2/product-iots/issues/1066
revert-dabc3590
Madhawa Perera 7 years ago committed by GitHub
commit 66f66b684c

@ -71,10 +71,10 @@
<goal>p2-profile-gen</goal>
</goals>
<configuration>
<profile>default</profile>
<profile>analytics-default</profile>
<metadataRepository>file:${basedir}/p2-repo</metadataRepository>
<artifactRepository>file:${basedir}/p2-repo</artifactRepository>
<destination>${basedir}/../repository/components</destination>
<destination>${basedir}/../../components</destination>
<deleteOldProfileFiles>false</deleteOldProfileFiles>
<features>
<feature>
@ -93,18 +93,20 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<version>1.6</version>
<executions>
<execution>
<id>default-feature-install</id>
<phase>package</phase>
<configuration>
<tasks>
<replace token="false" value="true"
dir="../repository/components/default/configuration/org.eclipse.equinox.simpleconfigurator">
<include name="**/bundles.info"/>
</replace>
</tasks>
<target>
<replaceregexp
file="../../components/analytics-default/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info"
match="(siddhi-gpl-execution-geo.*)false" replace="\1true" byline="true"/>
<replaceregexp
file="../../components/analytics-default/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info"
match="(gt-geojson.*)false" replace="\1true" byline="true"/>
</target>
</configuration>
<goals>
<goal>run</goal>

Loading…
Cancel
Save