ehcache / ehcache-jcache

The Ehcache 2.x implementation of JSR107 (JCACHE)
Other
91 stars 48 forks source link

Push to Maven repository #15

Closed sparty02 closed 10 years ago

sparty02 commented 10 years ago

Its great that somebody picked this up and is updating it to comply with the latest version of the spec. Do you have plans to release this to a Maven repo soon (even in SNAPSHOT form)?

alexsnaps commented 10 years ago

While there is a couple of things I'd like to address, and 107 to be final soonish, you're probably right that pushing a -SNAPSHOT, would be a neat way of getting feedback, while waiting for spec to final. I'll see what can be done.

sparty02 commented 10 years ago

Thanks! I appreciate the quick response in trying to get this pushed out. I agree that it can help drive adoption and assist in evolving the implementation if need be. Great work so far!

ljacomet commented 10 years ago

Ehcache JCache implementation has been published to Sonatype OSS Snapshot repository: https://oss.sonatype.org/content/repositories/snapshots/org/ehcache/

You need to add the following repository section to you maven pom to be able to get to it:

<repository>
    <id>sonatype-nexus-snapshots</id>
    <name>Sonatype Nexus Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>
alexsnaps commented 10 years ago

Closing, we'll create a new one for 1.0.0 final... as there will probably other related work to be done anyways