码迷,mamicode.com
首页 > 其他好文 > 详细

maven应用

时间:2020-06-02 09:32:05      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:nexus   name   build   bsp   pid   路径   mpi   url   repo   

parent增加

<distributionManagement>
<repository>
<id>maven-release</id>
<name>Nexus Release Repository</name>
<url>http://******:8081/repository/maven-snapshots/</url> <!--镜像路径-->
</repository>

<snapshotRepository>
<id>maven-snapshots</id>
<name>Nexus Release Repository</name>
<url>http://*******:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>

增加插件

<build>
    <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
<target>1.8</target>
</configuration>
<version>3.6.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
子项目增加
 <build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>

 

maven应用

标签:nexus   name   build   bsp   pid   路径   mpi   url   repo   

原文地址:https://www.cnblogs.com/yushizhang/p/13029199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!