1. 程式人生 > >maven釋出原始碼到私服

maven釋出原始碼到私服

1、pom.xml中配置plugin

<build>
	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-source-plugin</artifactId>
			<configuration>
				<attach>true</attach>
			</configuration>
			<executions>
				<execution>
					<phase>compile</phase>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>
	</plugins>
</build>

2、執行命令

mvn install  原始碼會發布到本地

mvn deploy  原始碼會發布到遠端倉庫