我正在构建一个Dropwizard项目。 (从:https://dropwizard.github.io/dropwizard/getting-started.html开始)
我在eclipse中创建了一个项目,但不明白为什么我得到了#34;无法解决"。
这是错误:
这是pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>foo.bar.app</groupId>
<artifactId>mvn-test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>mvn-test</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dropwizard.version>INSERT VERSION HERE</dropwizard.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
</dependencies>
</project>
任何人都可以提供帮助吗? 我不知道如何导入包,我真的不知道maven依赖。 感谢。
答案 0 :(得分:2)
您必须在pom.xml中定义$ {dropwizard.version}标记,如下所示:
<properties>
<dropwizard.version>0.7.0</dropwizard.version>
</properties>
答案 1 :(得分:1)
您必须插入特定的dropwizard.version
:
<dropwizard.version>**INSERT VERSION HERE**</dropwizard.version>
因此可以在pom
中使用
<version>${dropwizard.version}</version>