kenglxn / QRGen

a simple QRCode generation api for java built on top ZXING
http://glxn.net/2012/03/10/qrgen-a-small-wrapper-on-top-of-zxing-for-generating-qrcodes-in-java
1.49k stars 299 forks source link

2.2.0 not found #84

Closed typ0520 closed 7 years ago

typ0520 commented 7 years ago

jcenter上只有2.0这个版本 ,README里写的是2.2.0,是README写错了,还是jar包没有传 https://jcenter.bintray.com/net/glxn/qrgen/javase/

atomfrede commented 7 years ago

It is not published to jcenter or central anymore. You have to use the jitpack repository. When using maven add this repository:

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

and use this artifact:

<dependencies>
        <dependency>
            <groupId>com.github.kenglxn.qrgen</groupId>
            <artifactId>javase</artifactId>
            <version>2.2.0</version>
        </dependency>
    </dependencies>

For details see the README