Please don't use version ranges in library poms

Issue #261 resolved
Former user created an issue

Every time you do this (example from this project):

        <dependency>
            <groupId>com.nimbusds</groupId>
            <artifactId>lang-tag</artifactId>
            <version>[1.4.3,)</version>
        </dependency>

you force every build of every project that depends on your library to download all versions of lang-tag (1.4.3 and later). It sucks really badly.

Comments (5)

  1. Log in to comment