在maven中添加插件通过修改项目下的pom.xml文件完成。
如下是配置第一个插件示例:
(这个插件主要功能是为maven项目指定一个main方法。)
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.zte.app.myapp.App</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build>
如果过程中出现:cvc-complex-type.2.4.a: Invalid content was found starting with element xxxx
之类的错误,一般都是拼写问题,或者元素嵌套有误。
时间: 2024-10-13 10:19:45