Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过使用安装了maven 3.0.4 apt-get install maven,但是如何安装maven-site-plugin 3.0,突触包管理器显示只有libmaven-site-plugin-java 2.1-2和libjavacc-maven-site-plugin-java 2.6-2
apt-get install maven
maven-site-plugin 3.0
libmaven-site-plugin-java 2.1-2
libjavacc-maven-site-plugin-java 2.6-2
您永远不会通过操作系统(或在 ubuntu 中)安装 maven-site-plugin,您将通过 pom 使用它,如下定义:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.1</version> <configuration> ... ...
另请参阅有关 maven-site-plugin 的文档。