我正在尝试将资源添加到我的项目中。我手动添加了以下存储库并包含了大气快照。
<repositories>
<!-- Added to get the Atmosphere 1.1.0-SNAPSHOT, can be removed when 1.1.0 is released -->
<repository>
<id>oss.sonatype.org-snapshot</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-runtime</artifactId>
<version>1.1.0-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
.jar
我从这里下载了它,但是当我将它添加到我的项目结构中的“库”部分时,它不会将它添加为源,而是将它添加到类下。
在查看类的界面时进行调试时,我使用了编辑器顶部的快速“附加源...”选项并导航到 .jar 无济于事。