More specifically, the error I was getting in the xgsn part was the JiBX error java.lang.CharSequence, which has a solution described in
http://stackoverflow.com/questions/30461802/org-jibx-maven-jibx-plugin1-2-1-error-reading-path/40450781#40450781The only trick it was the bcel version (6.0-SNAPSHOT) which is official released now and can be retrieved directly by the version 6.0
In the xgsn pom.xml, I added dependencies for the maven-jibx-plugin (line 81), as bellow:
<plugin>
<groupId>org.jibx</groupId>
<artifactId>maven-jibx-plugin</artifactId>
<version>1.2.5</version>
<!--<version>1.1.6a</version> -->
<dependencies>
<dependency>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>6.0</version>
</dependency>
</dependencies>
<configuration>
<directory>conf/bind</directory>
<includes>
<include>containerJIBX.xml</include>
<include>VirtualSensorDescription.xml</include>
</includes>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<goals>
<goal>bind</goal>
</goals>
</execution>
</executions>
</plugin>
On Friday, March 6, 2015 at 8:31:48 PM UTC+1, Ben McCann wrote: