maven应用

Posted 于是张

tags:

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

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应用的主要内容,如果未能解决你的问题,请参考以下文章

jQuery应用 代码片段

Spring+SpringMVC+MyBatis+Maven框架整合

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

每当我运行我的片段时,这行代码 mapFragment.setRetainInstance(true);正在崩溃我的应用程序? [关闭]

执行代码时有时不显示对话框片段