Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16

Thread: spring-modules-cache dependencies

  1. #11

    Default

    I agree... Big time. I think I will avoid the spring-modules-cache until its sorted.
    Think I'll just use Ehcache directly.

  2. #12
    Join Date
    Feb 2006
    Posts
    15

    Default

    Quote Originally Posted by jweder View Post
    I agree... Big time. I think I will avoid the spring-modules-cache until its sorted.
    Think I'll just use Ehcache directly.
    Same here; 0.8a still suffers from this issue, and 0.9 is not even published. I'll wait 'til this is sorted out and use EHCache directly until then.

    Also fully agree with a poster above about the idea of splitting the provider-specific implementation in sub-modules.

  3. #13
    Join Date
    Aug 2008
    Posts
    6

    Default spring-modules-cache dependencies 3 years on

    There seems to be no resolution to this issue even today, 3 years after it has been posted.
    Are spring-modules (especially cache) still active? Any plans to make a life a bit easier for people using maven?

    Thanks,

    Dan

  4. #14
    Join Date
    Aug 2008
    Posts
    6

    Default Exclusions

    In case someone else might find it useful, I am posting the full list of exclusions for cache module.

    Code:
    <dependency>
      		<groupId>org.springmodules</groupId>
      		<artifactId>spring-modules-cache</artifactId>
      		<version>0.8a</version>
      		 <exclusions>
                        <exclusion>
                            <groupId>org.springframework</groupId>
                            <artifactId>spring</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>gigaspaces</groupId>
                            <artifactId>gigaspaces-ce</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>jsk-lib</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>jsk-platform</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>mahalo</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>reggie</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>start</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>boot</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jini</groupId>
                            <artifactId>webster</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>commons-attributes</groupId>
                            <artifactId>commons-attributes-api</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>commons-attributes</groupId>
                            <artifactId>commons-attributes-compiler</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>cglib</groupId>
                            <artifactId>cglib-nodep</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>javassist</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>jboss-cache</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>jboss-common</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>jboss-jmx</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>jboss-minimal</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jboss</groupId>
                            <artifactId>jboss-system</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jcs</groupId>
                            <artifactId>jcs</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jgroups</groupId>
                            <artifactId>jgroups-all</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>geronimo-spec</groupId>
                            <artifactId>geronimo-spec-jta</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>xpp3</groupId>
                            <artifactId>xpp3_min</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>xjavadoc</groupId>
                            <artifactId>xjavadoc</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>opensymphony</groupId>
                            <artifactId>oscache</artifactId>
                        </exclusion>                    
                        <exclusion>
                            <groupId>ehcache</groupId>
                            <artifactId>ehcache</artifactId>
                        </exclusion>                     
                    </exclusions>
      	</dependency>

  5. #15
    Join Date
    Oct 2007
    Posts
    5

    Default Bumping this issue

    Dan - thanks, that was very helpful!

    Spring guys - publishing the fixed pom for 0.9 would be very useful for many people out there using Maven. Building it the right way shouldn't be that costly. Willing to help if needed.

  6. #16
    Join Date
    Dec 2009
    Posts
    5

    Default

    springmodules doesn't work with spring 3.0. not sure how mature the ehcache-spring-annotations fork is. has anyone used it in a production environment?
    cheers

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •