在上一节中,我们讲述了maven私服搭建 ,那么本章,我们讲述如何使用maven将代码打包并上传到maven私服上。

一、maven pom.xml关键配置信息。

   <distributionManagement>
<repository>
<id>releases</id>
<name>Nexus Release Repository</name>
<url>http://192.9.104.17:8081/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>http://192.9.104.17:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>

二、maven 代码编译、打包、生成java doc相关配置

 

 <build>
<plugins> <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<url>http://192.9.104.116:8090/manager</url>
<server>tomcat-remote-deploy</server>
<path>/search-web</path>
</configuration>
</plugin> <plugin> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.7</version>
<configuration>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port>
<maxIdleTime>30000</maxIdleTime>
</connector>
</connectors>
<!--
<webAppSourceDirectory>${project.build.directory}/${pom.artifactId}-${pom.version}</webAppSourceDirectory> -->
<webApp>
<contextPath>/search</contextPath>
</webApp>
</configuration>
</plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.version}</version>
<!-- <version>2.1.2</version> -->
<configuration>
<source>1.6</source>
<target>1.6</target>
<complianceLevel>1.6</complianceLevel>
</configuration>
</plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${java.doc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

其中:

    maven-clean-plugin     执行mvn clean 命令相关插件

    maven-resources-plugin 执行mvn 工程resources打包管理

maven-source-plugin  执行maven 代码源码打包的工具

maven-compiler-plugin   maven代码编译的工具

    maven-javadoc-plugin    生成javadoc的maven工具

    tomcat-maven-plugin  进行tomcat远程部署的工具,主要配置的信息<server>tomcat-remote-deploy</server>就是setting.xml中servers中的配置信息,用户名和密码配置以后,就可以远程部署。

三、maven上传jar包到nexus私服。

  1、创建maven执行命令。

    点击Debug>>Debug configurations>>

    

    点击执行按钮:

    

   查看执行情况(见eclipse console):

    

[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.tianditu.search:search-nlp:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:tomcat-maven-plugin is missing. @ com.tianditu.search:tianditu-search:0.8, P:\ts_search\tianditu-search\pom.xml, line 62, column 14
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building search-nlp 0.1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.4:resources (default-resources) @ search-nlp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO]
[INFO] --- maven-compiler-plugin:2.4:compile (default-compile) @ search-nlp ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-resources-plugin:2.4:testResources (default-testResources) @ search-nlp ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory P:\ts_search\tianditu-search\search-nlp\src\test\resources
[INFO]
[INFO] --- maven-compiler-plugin:2.4:testCompile (default-testCompile) @ search-nlp ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.7.1:test (default-test) @ search-nlp ---
[INFO] No tests to run.
[INFO] Surefire report directory: P:\ts_search\tianditu-search\search-nlp\target\surefire-reports -------------------------------------------------------
T E S T S
-------------------------------------------------------
There are no tests to run. Results : Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO]
[INFO] --- maven-jar-plugin:2.3.1:jar (default-jar) @ search-nlp ---
[INFO] Building jar: P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1.jar
[INFO]
[INFO] --- maven-javadoc-plugin:2.7:jar (attach-javadocs) @ search-nlp ---
[ERROR] Error fetching link: http://java.sun.com/javase/6/docs/api/package-list. Ignored it.
[INFO]
正在加载程序包com.tianditu.search.nlp的源文件...
正在构造 Javadoc 信息...
标准 Doclet 版本 1.7.0_45
正在构建所有程序包和类的树...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\BCConvert.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\Pinyin.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\StringTool.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\package-frame.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\package-summary.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\package-tree.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\constant-values.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\class-use\StringTool.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\class-use\Pinyin.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\class-use\BCConvert.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\com\tianditu\search\nlp\package-use.html...
正在构建所有程序包和类的索引...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\overview-tree.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\index-all.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\deprecated-list.html...
正在构建所有类的索引...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\allclasses-frame.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\allclasses-noframe.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\index.html...
正在生成P:\ts_search\tianditu-search\search-nlp\target\apidocs\help-doc.html...
7 个警告
[WARNING] Javadoc Warnings
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:107: 警告 - @return 标记没有参数。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:127: 警告 - @return 标记没有参数。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:148: 警告 - @return 标记没有参数。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:171: 警告 - @return 标记没有参数。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:359: 警告 - @return 标记没有参数。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:73: 警告 - @note是未知标记。
[WARNING] P:\ts_search\tianditu-search\search-nlp\src\main\java\com\tianditu\search\nlp\StringTool.java:91: 警告 - @note是未知标记。
[INFO] Building jar: P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1-javadoc.jar
[INFO]
[INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ search-nlp ---
[INFO] Building jar: P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1-sources.jar
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ search-nlp ---
[INFO] Installing P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1.jar to C:\Users\GCZX-016\.m2\repository\com\tianditu\search\search-nlp\0.1\search-nlp-0.1.jar
[INFO] Installing P:\ts_search\tianditu-search\search-nlp\pom.xml to C:\Users\GCZX-016\.m2\repository\com\tianditu\search\search-nlp\0.1\search-nlp-0.1.pom
[INFO] Installing P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1-javadoc.jar to C:\Users\GCZX-016\.m2\repository\com\tianditu\search\search-nlp\0.1\search-nlp-0.1-javadoc.jar
[INFO] Installing P:\ts_search\tianditu-search\search-nlp\target\search-nlp-0.1-sources.jar to C:\Users\GCZX-016\.m2\repository\com\tianditu\search\search-nlp\0.1\search-nlp-0.1-sources.jar
[INFO]
[INFO] --- maven-deploy-plugin:2.5:deploy (default-deploy) @ search-nlp ---
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Uploading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1.jar
Uploading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1.pom
Uploaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1.jar (30 KB at 137.9 KB/sec)
Uploaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1.pom (5 KB at 46.4 KB/sec)
Downloading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/maven-metadata.xml
Downloaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/maven-metadata.xml (305 B at 8.1 KB/sec)
Uploading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/maven-metadata.xml
Uploaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/maven-metadata.xml (305 B at 0.6 KB/sec)
Uploading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1-javadoc.jar
Uploaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1-javadoc.jar (47 KB at 649.1 KB/sec)
Uploading: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1-sources.jar
Uploaded: http://192.9.104.17:8081/nexus/content/repositories/releases/com/tianditu/search/search-nlp/0.1/search-nlp-0.1-sources.jar (23 KB at 340.6 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.709s
[INFO] Finished at: Thu Jun 04 17:26:55 CST 2015
[INFO] Final Memory: 18M/386M
[INFO] ------------------------------------------------------------------------

  如有错误,然后定位并解决,主要错误就是用户没有权限,或者仓库地址没有配置等等。

    

    

使用maven将代码到私服的更多相关文章

  1. 07 Maven 使用Nexus创建私服

    7. Maven 使用Nexus创建私服 私服不是 Maven 的核心概念,它仅仅是一种衍生出来的特殊的 Maven 仓库.通过建立自己的私服,就可以降低中央仓库负荷.节省外网带宽.加速 Maven ...

  2. maven项目如何从私服nexus中下载依赖包

    maven项目如何从私服nexus中下载依赖包   解决方法: 1.打开maven的config目录中settings.xml文件 2.在<profile></profiles> ...

  3. maven发布项目到私服-snapshot快照库和release发布库的区别和作用及maven常用命令

    maven发布项目到私服-snapshot快照库和release发布库的区别和作用及maven常用命令 在日常的工作中由于各种原因,会出现这样一种情况,某些项目并没有打包至mvnrepository. ...

  4. Linux安装配置maven以及搭建nexus私服(编写启动脚本)

    2011年07月12日16:32  下面介绍在Linux操作系统下安装配置maven和搭建nexus私服. 一.安装前的准备 下载 jdk http://www.oracle.com/technetw ...

  5. 使用Maven部署构件至私服

    --------------------siwuxie095                                 使用 Maven 部署构件至私服         1.部署构件到 Nexu ...

  6. Maven编译代码的时候跳过单元测试

    Maven编译代码的时候跳过单元测试 <properties> <maven.test.skip>true</maven.test.skip> </prope ...

  7. MAVEN学习笔记之私服Nexus(2)

    MAVEN学习笔记之私服Nexus(2) 私有服务器搭建 Nexus www.snatype.org下载 snatype-work 是默认nexus存储nexus a:将bin添加到环境中 Admin ...

  8. maven仓库--搭建局域网私服(windows版)

    使用nexus搭建局域网私服 一. 认识maven仓库 1.1 maven仓库的作用   回想之前不用maven的时候,我们用eclipse原始的项目骨架构建项目时,在工程目录下往往有一个lib文件夹 ...

  9. 【Maven学习】Nexus私服代理其他第三方的Maven仓库

    一.背景 [Maven学习]Nexus OSS私服仓库的安装和配置 http://blog.csdn.net/ouyang_peng/article/details/78793038 [Maven学习 ...

随机推荐

  1. Myeclipse启动报错: Invalid 'log4jConfigLocation' parameter

    java.lang.IllegalArgumentException: Invalid 'log4jConfigLocation' parameter: class path resource [lo ...

  2. tarjan讲解(用codevs1332(tarjan的裸题)讲解)

    主要借助这道比较裸的题来讲一下tarjan这种算法 tarjan是一种求解有向图强连通分量的线性时间的算法.(用dfs来实现) 如果两个顶点可以相互通达,则称两个顶点强连通.如果有向图G的每两个顶点都 ...

  3. 【工匠大道】一些Vim(Linux)不常见但很逼格的命令(不断更新中)

    本文地址 分享提纲: 1. :Tlist 2. :colorscheme 3. :set cursorline 4. ma 5. vim -x 6. CTRL-] 7. 折叠 8. 向别的用户终端写信 ...

  4. jQuery演示8种不同的图片遮罩层动画效果

    效果预览 下载地址 jQuery插件大全 实例代码 <div class="container"> <h1>jQuery图标和文章动画效果</h1&g ...

  5. 推荐15款响应式的 jQuery Lightbox 插件

    利用现代 Web 技术,网络变得越来越轻巧与.模态框是突出展现内容的重要形式,能够让用户聚焦到重要的内容上去.在这个列表中,我们编制了15款响应式的 jQuery 灯箱库,这将有助于开发人员创建和设计 ...

  6. 深入浅出node(3) 异步I/O

    这篇主要整理深入浅出Node.js第三章 异步I/O 一) 异步I/O的原因 二)异步I/O实现现状 2.1 异步I/O与非阻塞I/O 2.2 轮询 2.3 理想的非阻塞异步I/O 2.4 现实的异步 ...

  7. Vue.js 递归组件实现树形菜单

    最近看了 Vue.js 的递归组件,实现了一个最基本的树形菜单. 项目结构: main.js 作为入口,很简单: import Vue from 'vue' Vue.config.debug = tr ...

  8. 搭建基于 STM32 和 rt-thread 的开发平台

    我们需要平台 如果说,SharePoint 的价值之一在于提供了几乎开箱即用的 innovation 环境,那么,智能设备的开发平台也一样.不必每次都从头开始,所以需要固定的工作室和开发平台作为创新的 ...

  9. Android Studio调试方法学习笔记

    (注:本人所用Android Studio的Keymap已设为Eclipse copy) 1.设置断点 只有设置断点,才好定位要调试什么地方,否则找不到要调试的地方,无法调试.(调试过程中也可以增加断 ...

  10. iOS开发之功能模块--高仿Boss直聘的IM界面交互功能

    本人公司项目属于社交类,高仿Boss直聘早期的版本,现在Boss直聘界面风格,交互风格都不如Boss直聘以前版本的好看. 本人通过iPhone模拟器和本人真机对聊,将完成的交互功能通过Mac截屏模拟器 ...