我在这里下载了示例气氛 jax-rs 源代码 - http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.atmosphere.samples%22%20AND%20a%3A%22atmosphere-jaxrs2-聊天%22
我下载了战争和sources.jar。并且 pom.xml 可以在浏览器中查看 - http://search.maven.org/remotecontent?filepath=org/atmosphere/samples/atmosphere-jaxrs2-chat/1.0.7/atmosphere-jaxrs2-chat-1.0.7 .pom
我想将这个 pom.xml 中的一些依赖项复制到我自己的 pom.xml 中,但我看到类似 -
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>${jersey-version}</version>
</dependency>
我假设${logback-version}
并且${jersey-version}
是占位符,但它们实际设置在哪里?