Hi,
So far I’m builing process applications based on Maven “camunda-archetype-ejb-war-7.8.0”
In the pom.xml file there I see that the used jboss version is 7.2.1.Final.
<name>Camunda BPM Process Application</name>
<description>A Process Application for [Camunda BPM](http://docs.camunda.org). [The project has been generated by the Maven archetype 'camunda-archetype-ejb-war-7.8.0']</description>
<properties>
<camunda.version>7.8.0</camunda.version>
<arquillian.version>1.1.2.Final</arquillian.version>
<jboss.version>**7.2.1.Final**</jboss.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
I’m trying now to build a process application based on Maven camunda-archetype-ejb-war-7.10.0.
The generated pom.xml file has a earlier(?) jboss version!
<name>Camunda BPM Process Application</name>
<description>A Process Application for [Camunda BPM](http://docs.camunda.org). [The project has been generated by the Maven archetype 'camunda-archetype-ejb-war-7.10.0']</description>
<properties>
<camunda.version>7.10.0</camunda.version>
<!--
Adjust if you want to use Camunda Enterprise Edition (EE):
<camunda.version>7.10.0-ee</camunda.version>
Make sure you also switch to EE repository below
-->
<arquillian.version>1.4.0.Final</arquillian.version>
<jboss.version>**7.2.0.Final**</jboss.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Is that possible? Shall I change it? Will I have any issues?
Thanks!