Skip to content
helpermethod edited this page Apr 29, 2013 · 4 revisions

Welcome to the soa-model wiki!

Troubleshooting

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>
Clone this wiki locally