xml maven pom.xml文件的基本插件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml maven pom.xml文件的基本插件相关的知识,希望对你有一定的参考价值。


<build>
	<finalName>${project.name}-${project.version}</finalName>
	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-compiler-plugin</artifactId>
			<version>2.3.2</version>
			<configuration>
				<source>${java-version}</source>
				<target>${java-version}</target>
				<encoding>${project.build.sourceEncoding}</encoding>
			</configuration>
		</plugin>

		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-source-plugin</artifactId>
			<executions>
				<execution>
					<id>attach-sources</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>

		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-javadoc-plugin</artifactId>
			<executions>
				<execution>
					<id>attach-javadocs</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>

	</plugins>
</build>

以上是关于xml maven pom.xml文件的基本插件的主要内容,如果未能解决你的问题,请参考以下文章

maven,pom.xml里配置了插件,是怎么使用的

Maven - pom.xml 文件

pom.xml 文件简述

maven 03-pom.xml核心配置

Maven POM

Maven POM