-
Notifications
You must be signed in to change notification settings - Fork 73
Home
helpermethod edited this page Apr 29, 2013
·
4 revisions
Welcome to the soa-model wiki!
If you want to use SOA Model in your Groovy application, you may run into trouble with conflicting versions of Groovy. This can be easily solved by excluding Groovy from the soa-model dependency:
<dependencies>
...
<dependency>
<groupId>com.predic8</groupId>
<artifactId>soa-model-core</artifactId>
<version>1.3.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>