dgc-java icon indicating copy to clipboard operation
dgc-java copied to clipboard

Added classifier for java 8 jars

Open aegyed opened this issue 4 years ago • 1 comments

This way these could be deployed to maven central and be accessed with classifier java8. (If you are willing to add an extra step to the pipeline...)

        <dependency>
            <groupId>se.digg.dgc</groupId>
            <artifactId>dgc-schema</artifactId>
            <version>${dgc-java.version}</version>
            <classifier>java8</classifier>
        </dependency>
        <dependency>
            <groupId>se.digg.dgc</groupId>
            <artifactId>dgc-create-validate</artifactId>
            <version>${dgc-java.version}</version>
            <classifier>java8</classifier>
        </dependency>

aegyed avatar Jun 12 '21 08:06 aegyed

@aegyed I actually tried just this, but for some reason the deploy doesn't work.

martin-lindstrom avatar Jun 15 '21 12:06 martin-lindstrom