为什么我无法使用Maven获得源代码文档

时间:2018-11-07 17:16:52

标签: java eclipse maven rxtx

通过在pom.xml中添加依赖项,我在Eclipse的Java Maven项目中获得了RXTX库:

<dependency>
    <groupId>org.rxtx</groupId>
    <artifactId>rxtx</artifactId>
    <version>2.1.7</version>
</dependency>   

但是如何要求Maven下载文档和源代码呢?

我在项目属性中进行了设置,应该可以帮助我解决问题,但是我看不到任何文档和资源。

enter image description here

我有一个插件,希望可以帮助我下载源代码:

            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

但是执行mvn verify后,我发现源和文档不可用:

m2e-lastUpdated.properties
11/07/2018  07:03 PM                 0 rxtx-2.1.7-javadoc.jar-not-available
11/07/2018  07:03 PM               255 rxtx-2.1.7-javadoc.jar.lastUpdated
11/07/2018  07:03 PM                 0 rxtx-2.1.7-sources.jar-not-available
11/07/2018  07:03 PM               255 rxtx-2.1.7-sources.jar.lastUpdated
11/05/2018  12:33 PM            59,464 rxtx-2.1.7.jar
11/05/2018  12:33 PM               126 rxtx-2.1.7.jar.sha1
11/05/2018  12:33 PM               841 rxtx-2.1.7.pom
11/05/2018  12:33 PM               126 rxtx-2.1.7.pom.sha1
11/05/2018  12:33 PM               192 _remote.repositories

我还可以做些什么来获取RXTX库源代码?

1 个答案:

答案 0 :(得分:2)

您是正确的,似乎the Maven repository不包含RXTX的源代码。

您可以找到the source code for RXTX on GitHub