Description
I'm currently working with Wildfly Swarm that uses Shrinkwrap. In addition I'm using deltaspike scheduler with quartz. When I deploy my Swarm with maven I get an exception that is caused by
<dependencies>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-bom</artifactId>
<version>${shrinkwrap.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
in the pom.xml of deltaspike-scheduler-module-impl. The problem is, that scope:import is used but it should only be used in the dependency management section (https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html)
There is a related issue in the Swarm Jira: https://issues.jboss.org/browse/SWARM-381