1 回答
TA贡献1806条经验 获得超8个赞
需要立即注意的问题是:https: //github.com/Jazilch/bit.ly/blob/1b4f8e77acced6e054cced5bf4cdf51d2d7da2fc/server/pom.xml#L16-L29
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-db</artifactId>
<version>0.8.2</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-jdbi</artifactId>
<version>0.7.0-rc1</version>
您正在使用各种dropwizard模块的几个不同版本。它们并不意味着可以互换。始终只使用一个。
您也可以删除关于<artifactId>dropwizard-db</artifactId>. 正在dropwizard-jdbi声明并包含它:https://github.com/dropwizard/dropwizard/blob/3df1e0a621a2b6f1f559fa95029abe09ce41e093/dropwizard-jdbi/pom.xml#L29
添加回答
举报