Skip to content
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 using conflicting Groovy versions. 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