0

我正在尝试将资源添加到我的项目中。我手动添加了以下存储库并包含了大气快照。

<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 无济于事。

4

1 回答 1

0

Maven 找不到源代码,因为该 Maven 存储库中没有该库的源代码(我认为这对于库的快照很常见)。我下载了其中一个 jar,它们只包含类文件,所以我想知道,即使您手动附加 jar,您如何才能看到源代码。

于 2013-05-01T07:53:16.597 回答