psiegman/ehcachetag

provide maven artifact in public repository

Opened this issue · 0 comments

I'm just trying out the eh cache tag, and am using it with maven through jitpack.io with the following dependency definition

    <dependency>
    <groupId>com.github.psiegman</groupId>
    <artifactId>ehcachetag</artifactId>
        <version>7df1b9af09</version>
        <exclusions>
            <exclusion>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.mockito</groupId>
                <artifactId>mockito-all</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
            </exclusion>
            <exclusion>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
            </exclusion>
            <exclusion>
                <groupId>com.github.psiegman.ehcachetag</groupId>
                <artifactId>ehcachetag-demo</artifactId>
            </exclusion>
        </exclusions>
    </dependency>   

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

It would be handy if there was a public artifact available through one of the public repositories though, is this in the works? Also, I had to exclude log4j dependencies which were pulled in.