(Man, I'm learning more Maven than I ever imagined I could survive :-(

I'm trying to update the archetypes for the Slf4j fix. A problem with
the JPA ones is that hibernate includes an old version of slf4j-api.

So (after variable substitution) I add  following to fix to the
version we use in lift:

<dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>[1.5.6,)</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

Except this doesn't change anything. If I modify the version to not be a range:

        <version>1.5.10</version>

it works.

What to do?

/Jeppe

-- 
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.

Reply via email to