maven json repository 遇到的問題

項目須要用到json,就選擇了 20141113 這個最新的版本。發現項目運行會報錯,報錯日誌以下:
java.lang.UnsupportedClassVersionError: org/json/JSONObject : Unsupported major.minor version 52.0
項目中用的jdk是1.7,支持不了。
最後發現只要下降版本就能夠了。
<dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20140107</version>
</dependency>

這樣就能夠了。
相關文章
相關標籤/搜索