赞
踩
提示:安装之前需要先确认好自己需要哪个版本的maven,避免浪费时间。
官网下载:https://maven.apache.org/download.cgi
历史版本下载:https://archive.apache.org/dist/maven/maven-3/
<localRepository\>
该值表示构建系统本地仓库的路径
<interactiveMode\>
表示maven是否需要和用户交互以获得输入,
如果maven需要和用户交互以获得输入,则设置成true,反之则应为false。默认为true。
<usePluginRegistry\>
作用:maven是否需要使用plugin-registry.xml文件来管理插件版本。
如果需要让maven使用文件~/.m2/plugin-registry.xml来管理插件版本,则设为true。默认为false。
<offline\>
作用:表示maven是否需要在离线模式下运行。
如果构建系统需要在离线模式下运行,则为true,默认为false。
当由于网络设置原因或者安全因素,构建服务器不能连接远程仓库的时候,该配置就十分有用。
<pluginGroups\>
作用:当插件的组织id(groupId)没有显式提供时,供搜寻插件组织Id(groupId)的列表。
该元素包含一个pluginGroup元素列表,每个子元素包含了一个组织Id(groupId)。
当我们使用某个插件,并且没有在命令行为其提供组织Id(groupId)的时候,Maven就会使用该列表。
默认情况下该列表包含了org.apache.maven.plugins和org.codehaus.mojo。
<servers\>
作用:一般,仓库的下载和部署是在pom.xml文件中的repositories和distributionManagement元素中定义的。
然而,一般类似用户名、密码(有些仓库访问是需要安全认证的)等信息不应该在pom.xml文件中配置,
这些信息可以配置在settings.xml中。
<mirror\>
mirror可以拦截对远程仓库的请求,改变对目标仓库的下载地址。 mirror就是镜像,主要提供一个方便地切换远程仓库地址的途径。
当maven需要到的依赖jar包不在本地仓库时,就需要到远程仓库下载,这个时候如果maven的setting.xml中配置了镜像,而且镜像配置的规则中匹配到目标仓库时,maven就直接去镜像中配置的仓库地址进行依赖jar的下载,而不会去其他的地方进行下载。
镜像拦截规则 | 说明 |
---|---|
<mirrorOf>*</mirrorOf> | 匹配所有远程仓库。 |
<mirrorOf>external:*</mirrorOf> | 匹配所有远程仓库,使用localhost的除外,使用file://协议的除外。也就是说,匹配所有不在本机上的远程仓库。 |
<mirrorOf>repo1,repo2</mirrorOf> | 匹配仓库repo1和repo2,使用逗号分隔多个远程仓库。 |
<mirrorOf>*,!repo1</miiroOf> | 匹配所有远程仓库,repo1除外,使用感叹号将仓库从匹配中排除。 |
<profiles\>
作用:根据环境参数来调整构建配置的列表。 settings.xml中的profile元素是pom.xml中profile元素的裁剪版本。
它包含了id、activation、repositories、pluginRepositories和properties元素。这里的profile元素只包含这五个子元素是因为这里只关心构建系统这个整体(这正是settings.xml文件的角色定位),而非单独的项目对象模型设置。如果一个settings.xml中的profile被激活,它的值会覆盖任何其它定义在pom.xml中带有相同id的profile。
<profiles>
<profile>
<id>test</id> <!-- profile的唯一标识 -->
<activation /> <!-- 自动触发profile的条件逻辑 -->
<properties /> <!-- 扩展属性列表 -->
<repositories /> <!-- 远程仓库列表 -->
<pluginRepositories /> <!-- 插件仓库列表 -->
</profile>
</profiles>
<activeProfiles\>
作用:手动激活profiles的列表,按照profile被应用的顺序定义activeProfile。
该元素包含了一组activeProfile元素,每个activeProfile都含有一个profile id。任何在activeProfile中定义的profile id,不论环境设置如何,其对应的profile都会被激活。如果没有匹配的profile,则什么都不会发生。
例如,env-test是一个activeProfile,则在pom.xml(或者profile.xml)中对应id的profile会被激活。如果运行过程中找不到这样一个profile,Maven则会像往常一样运行。
<profiles\>子标签<activation\>
作用:自动触发profile的条件逻辑。
如pom.xml中的profile一样,profile的作用在于它能够在某些特定的环境中自动使用某些特定的值;这些环境通过activation元素指定。
activation元素并不是激活profile的唯一方式。settings.xml文件中的activeProfile元素可以包含profile的id。profile也可以通过在命令行,使用-P标记和逗号分隔的列表来显式的激活(如,-P test)。
注:
在maven工程的pom.xml所在目录下执行help:effective-settings,点击运行,控制台会输出合并、覆盖之后最终的settings.xml文件
在maven工程的pom.xml所在目录下执行mvn help:active-profiles命令可以查看profile生效情况。
<profiles\>子标签<repositories\>
作用:远程仓库列表,它是maven用来填充构建系统本地仓库所使用的一组远程仓库。
maven里有两种仓库,本地仓库和远程仓库。 远程仓库相当于公共的仓库,大家都能看到。
本地仓库是你本地的缓存副本,只有你看的到,主要起缓存作用。
当你向仓库请求插件或依赖的时候,会先检查本地仓库里是否有。如果有则直接返回,否则会向远程仓库请求,并被缓存到本地仓库。远程仓库既可以在setting.xml中配置也可以在工程的pom.xml文件里指定。
<profiles\>子标签<properties\>
作用:对应profile的扩展属性列表。
maven属性和ant中的属性一样,可以用来存放一些值。这些值可以在pom.xml中的任何地方使用标记${X}来使用,这里X是指属性的名称。属性有五种不同的形式,并且都能在settings.xml文件中访问。
注:如果该profile被激活,则可以在pom.xml中使用${user.install}。
<profiles\>子标签<pluginRepositories\>
作用:发现插件的远程仓库列表。
和repository类似,只是repository是管理jar包依赖的仓库,pluginRepositories则是管理插件的仓库。
maven插件是一种特殊类型的构件。由于这个原因,插件仓库独立于其它仓库。pluginRepositories元素的结构和repositories元素的结构类似。每个pluginRepository元素指定一个Maven可以用来寻找新插件的远程地址。
示例:
<?xml version="1.0" encoding="UTF-8"?> <!-- | 官方文档: https://maven.apache.org/settings.html | Maven 提供以下两种 level 的配置: | 1. User Level. 当前用户独享的配置, 通常在 ${user.home}/.m2/settings.xml 目录下。 | 可在 CLI 命令行中通过以下参数设置: -s /path/to/user/settings.xml | 2. Global Level. 同一台计算机上的所有 Maven 用户共享的全局配置。 通常在${maven.home}/conf/settings.xml目录下。 | 可在 CLI 命令行中通过以下参数设置: -gs /path/to/global/settings.xml | 备注: User Level 优先级 > Global Level |--> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- | Maven 依赖搜索顺序, 当我们执行 Maven 命令时, Maven 开始按照以下顺序查找依赖的库: | 步骤 1 - 在本地仓库中搜索, 如果找不到, 执行步骤 2, 如果找到了则执行其他操作。 | 步骤 2 - 在中央仓库中搜索, 如果找不到, 并且有一个或多个远程仓库已经设置, 则执行步骤 4, 如果找到了则下载到本地仓库中已被将来引用。 | 步骤 3 - 如果远程仓库没有被设置, Maven 将简单的停滞处理并抛出错误(无法找到依赖的文件)。 | 步骤 4 - 在一个或多个远程仓库中搜索依赖的文件, 如果找到则下载到本地仓库已被将来引用, 否则 Maven 将停止处理并抛出错误(无法找到依赖的文件)。 |--> <!-- 地仓库路径, 默认值: ${user.home}/.m2/repository --> <localRepository>${user.home}/workspace/env/maven/repository</localRepository> <!-- 当 maven 需要输入值的时候, 是否交由用户输入, 默认为true;false 情况下 maven 将根据使用配置信息进行填充 --> <interactiveMode>true</interactiveMode> <!-- 离线 artifact 下载、 部署等操作, 默认: false --> <offline>false</offline> <!-- | 搜索插件时, 如果 groupId 没有显式提供时, 则以此处配置的 groupId 为默认值, 可以简单理解为默认导入这些 groupId 下的所有 artifact(需要时才下载) | 默认情况下该列表包含了 org.apache.maven.plugins和org.codehaus.mojo | | 查看插件信息: | mvn help:describe -Dplugin=org.apache.maven.plugins:maven-compiler-plugin:3.5.1 -Ddetail |--> <pluginGroups> <!-- plugin 的 groupId --> <!-- <pluginGroup>com.your.plugins</pluginGroup> --> </pluginGroups> <!-- 进行远程服务器访问时所需的授权配置信息。通过系统唯一的 server-id 进行唯一关联 --> <servers> <server> <!-- 这是 server 的 id, 该 id 与 distributionManagement 中 repository 元素的id 相匹配 --> <id>server_id</id> <!-- 鉴权用户名 --> <username>auth_username</username> <!-- 鉴权密码 --> <password>auth_pwd</password> <!-- 鉴权时使用的私钥位置。和前两个元素类似, 私钥位置和私钥密码指定了一个私钥的路径(默认是/home/hudson/.ssh/id_dsa)以及如果需要的话, 一个密钥 --> <privateKey>path/to/private_key</privateKey> <!-- 鉴权时使用的私钥密码, 非必要, 非必要时留空 --> <passphrase>some_passphrase</passphrase> <!-- | 文件被创建时的权限。如果在部署的时候会创建一个仓库文件或者目录, 这时候就可以使用权限(permission) | 这两个元素合法的值是一个三位数字, 其对应了unix文件系统的权限, 如664, 或者775 |--> <filePermissions>664</filePermissions> <!-- 目录被创建时的权限 --> <directoryPermissions>775</directoryPermissions> <!-- 传输层额外的配置项 --> <configuration></configuration> </server> </servers> <!-- | 从远程仓库下载 artifacts 时, 用于替代指定远程仓库的镜像服务器配置; | 例如当您无法连接上国外的仓库是, 可以指定连接到国内的镜像服务器; | pom.xml 和 setting.xml 中配置的仓库和镜像优先级关系(mirror 优先级高于 repository): | repository(setting.xml) < repository(pom.xml) < mirror(setting.xml) | 例如, 如果配置了 mirrorOf = *, 则 不管项目的 pom.xml 配置了什么仓库, 最终都会被镜像到 镜像仓库 | 私服的配置推荐用profile配置而不是mirror |--> <mirrors> <!-- | 【mirro 匹配顺序】: | 多个 mirror 优先级 按照 id字母顺序进行排列(即与编写的顺序无关) | 在第一个 mirror 找不到 artifact, 不会继续超找下一个镜像。 | 只有当 mirror 无法链接的时候, 才会尝试链接下一个镜像, 类似容灾备份。 |--> <!-- 上海交通大学反向代理 --> <mirror> <!-- 该镜像的唯一标识符, id用来区分不同的 mirror 元素, 同时会套用使用 server 中 id 相同授权配置链接到镜像 --> <id>sjtugmaven</id> <!-- 镜像名称, 无特殊作用, 可视为简述 --> <name>sjtug maven proxy</name> <!-- 镜像地址 --> <url>https://mirrors.sjtug.sjtu.edu.cn/maven-central/</url> <!-- 被镜像的服务器的id, 必须与 repository 节点设置的 ID 一致。但是 This must not match the mirror id | mirrorOf 的配置语法: | * = 匹配所有远程仓库。 这样所有 pom 中定义的仓库都不生效 | external:* = 匹配除 localhost、使用 file:// 协议外的所有远程仓库 | repo1,repo2 = 匹配仓库 repo1 和 repo2 | *,!repo1 = 匹配所有远程仓库, repo1 除外 |--> <mirrorOf>central</mirrorOf> </mirror> </mirrors> <!-- 用来配置不同的代理, 多代理 profiles 可以应对笔记本或移动设备的工作环境: 通过简单的设置 profile id 就可以很容易的更换整个代理配置 --> <proxies> <!-- 代理元素包含配置代理时需要的信息 --> <proxy> <!-- 代理的唯一定义符, 用来区分不同的代理元素 --> <id>example_proxy</id> <!-- 该代理是否是激活的那个。true则激活代理。当我们声明了一组代理, 而某个时候只需要激活一个代理的时候, 该元素就可以派上用处 --> <active>false</active> <!-- 代理的协议 --> <protocol>https</protocol> <!-- 代理的主机名 --> <host>proxy.molo.com</host> <!-- 代理的端口 --> <port>443</port> <!-- 代理服务器认证的登录名 --> <username>proxy_user</username> <!-- 代理服务器认证登录密码 --> <password>proxy_pwd</password> <!-- 不该被代理的主机名列表。该列表的分隔符由代理服务器指定;例子中使用了竖线分隔符, 使用逗号分隔也很常见 --> <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts> </proxy> </proxies> <!-- | 构建方法的配置清单, maven 将根据不同环境参数来使用这些构建配置。 | settings.xml 中的 profile 元素是 pom.xml 中 profile 元素的裁剪版本。 | settings.xml 负责的是整体的构建过程, pom.xml 负责单独的项目对象构建过程。 | settings.xml 只包含了id, activation, repositories, pluginRepositories 和 properties 元素。 | | 如果 settings 中的 profile 被激活, 它的值会覆盖任何其它定义在 pom.xml 中或 profile.xml 中的相同 id 的 profile。 | | 查看当前激活的 profile: | mvn help:active-profiles |--> <profiles> <profile> <!-- 该配置的唯一标识符 --> <id>profile_id</id> <!-- | profile 的激活条件配置; | 其他激活方式: | 1. 通过 settings.xml 文件中的 activeProfile 元素进行指定激活。 | 2. 在命令行, 使用-P标记和逗号分隔的列表来显式的激活, 如: mvn clean package -P myProfile)。 |--> <activation> <!-- 是否默认激活 --> <activeByDefault>false</activeByDefault> <!-- 内建的 java 版本检测, 匹配规则: https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html --> <jdk>9.9</jdk> <!-- 内建操作系统属性检测, 配置规则: https://maven.apache.org/enforcer/enforcer-rules/requireOS.html --> <os> <!-- 操作系统 --> <name>Windows XP</name> <!-- 操作系统家族 --> <family>Windows</family> <!-- 操作系统 --> <arch>x86</arch> <!-- 操作系统版本 --> <version>5.1.2600</version> </os> <!-- | 如果Maven检测到某一个属性(其值可以在POM中通过${名称}引用), 并且其拥有对应的名称和值, Profile就会被激活。 | 如果值字段是空的, 那么存在属性名称字段就会激活profile, 否则按区分大小写方式匹配属性值字段 |--> <property> <!-- 属性名 --> <name>mavenVersion</name> <!-- 属性值 --> <value>2.0.3</value> </property> <!-- 根据文件存在/不存在激活profile --> <file> <!-- 如果指定的文件存在, 则激活profile --> <exists>/path/to/active_on_exists</exists> <!-- 如果指定的文件不存在, 则激活profile --> <missing>/path/to/active_on_missing</missing> </file> </activation> <!-- 扩展属性设置。扩展属性可以在 POM 中的任何地方通过 ${扩展属性名} 进行引用 | | 属性引用方式(包括扩展属性, 共 5 种属性可以引用): | | env.x : 引用 shell 环境变量, 例如, "env.PATH"指代了 $path 环境变量(在 Linux / Windows 上是 %PATH% ). | project.x : 引用 pom.xml(根元素就是 project) 中 xml 元素内容.例如 ${project.artifactId} 可以获取 pom.xml 中设置的 <artifactId /> 元素的内容 | settings.x : 引用 setting.xml(根元素就是 setting) 中 xml 元素内容, 例如 ${settings.offline} | Java System Properties : 所有可通过 java.lang.System.getProperties() 访问的属性都能在通过 ${property_name} 访问, 例如 ${java.home} | x : 在 <properties/> 或者 外部文件 中设置的属性, 都可以 ${someVar} 的形式使用 | |--> <properties> <!-- 在当前 profile 被激活时, ${profile.property} 就可以被访问到了 --> <profile.property>this.property.is.accessible.when.current.profile.actived</profile.property> </properties> <!-- 远程仓库列表 --> <repositories> <!-- | releases vs snapshots | maven 针对 releases、snapshots 有不同的处理策略, POM 就可以在每个单独的仓库中, 为每种类型的 artifact 采取不同的策略 | 例如: | 开发环境 使用 snapshots 模式实时获取最新的快照版本进行构建 | 生成环境 使用 releases 模式获取稳定版本进行构建 | 参见repositories/repository/releases元素 |--> <!-- | 依赖包不更新问题: | 1. Maven 在下载依赖失败后会生成一个.lastUpdated 为后缀的文件。如果这个文件存在, 那么即使换一个有资源的仓库后, Maven依然不会去下载新资源。 | 可以通过 -U 参数进行强制更新、手动删除 .lastUpdated 文件: | find . -type f -name "*.lastUpdated" -exec echo {}" found and deleted" \; -exec rm -f {} \; | | 2. updatePolicy 设置更新频率不对, 导致没有触发 maven 检查本地 artifact 与远程 artifact 是否一致 |--> <repository> <!-- 远程仓库唯一标识 --> <id>maven_repository_id</id> <!-- 远程仓库名称 --> <name>maven_repository_name</name> <!-- 远程仓库URL, 按protocol://hostname/path形式 --> <url>http://host/maven</url> <!-- | 用于定位和排序 artifact 的仓库布局类型-可以是 default(默认)或者 legacy(遗留) | Maven 2为其仓库提供了一个默认的布局;然而, Maven 1.x有一种不同的布局。我们可以使用该元素指定布局是default(默认)还是legacy(遗留) | --> <layout>default</layout> <!-- 如何处理远程仓库里发布版本的下载 --> <releases> <!-- 是否允许该仓库为 artifact 提供 发布版 / 快照版 下载功能 --> <enabled>false</enabled> <!-- | 每次执行构建命令时, Maven 会比较本地 POM 和远程 POM 的时间戳, 该元素指定比较的频率。 | 有效选项是: | always(每次构建都检查), daily(默认, 距上次构建检查时间超过一天), interval: x(距上次构建检查超过 x 分钟)、 never(从不) | | 重要: | 设置为 daily, 如果 artifact 一天更新了几次, 在一天之内进行构建, 也不会从仓库中重新获取最新版本 |--> <updatePolicy>always</updatePolicy> <!-- 当 Maven 验证 artifact 校验文件失败时该怎么做: ignore(忽略), fail(失败), 或者warn(警告) --> <checksumPolicy>warn</checksumPolicy> </releases> <!-- 如何处理远程仓库里快照版本的下载 --> <snapshots> <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots> </repository> <!-- 国内可用的 maven 仓库地址(updated @ 2019-02-08): http://maven.aliyun.com/nexus/content/groups/public http://maven.wso2.org/nexus/content/groups/public/ http://jcenter.bintray.com/ http://maven.springframework.org/release/ http://repository.jboss.com/maven2/ http://uk.maven.org/maven2/ http://repo1.maven.org/maven2/ http://maven.springframework.org/milestone http://maven.jeecg.org/nexus/content/repositories/ http://repo.maven.apache.org/maven2 http://repo.spring.io/release/ http://repo.spring.io/snapshot/ http://mavensync.zkoss.org/maven2/ https://repository.apache.org/content/groups/public/ https://repository.jboss.org/nexus/content/repositories/releases/ --> </repositories> <!-- | maven 插件的远程仓库配置。maven 插件实际上是一种特殊类型的 artifact。 | 插件仓库独立于 artifact 仓库。pluginRepositories 元素的结构和 repositories 元素的结构类似。 |--> <!-- <pluginRepositories> <pluginRepository> <releases> <enabled /> <updatePolicy /> <checksumPolicy /> </releases> <snapshots> <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots> <id /> <name /> <url /> <layout /> </pluginRepository> </pluginRepositories> --> </profile> </profiles> <!-- | 手动激活 profiles 的列表, 按照 profile 被应用的顺序定义 activeProfile | 任何 activeProfile, 不论环境设置如何, 其对应的 profile 都会被激活, maven 会忽略无效(找不到)的 profile |--> <!-- <activeProfiles> <activeProfile>not-exits-profile</activeProfile> </activeProfiles> --> </settings>
总结:
mirror可以拦截对远程仓库的请求,改变对目标仓库的下载地址
镜像(Mirroring)是冗余的一种类型,一个磁盘上的数据在另一个磁盘上存在一个完全相同的副本即为镜像。
为什么配置镜像?
1.一句话,你有的我也有,你没有的我也有。(拥有远程仓库的所有 jar,包括远程仓库没有的 jar)
2.还是一句话,我跑的比你快。(有时候远程仓库获取 jar 的速度可能比镜像慢,这也是为什么我们一般要配置中央仓库的原因,外国的 maven 仓库一般获取速度比较慢)
如果你配置 maven 镜像不是为了以上两点,那基本就不用配置镜像了。(私服不用配置镜像^_^)
注意:当远程仓库被镜像匹配到的,则在 jar 包将从镜像仓库获取,而不是我们配置的 repository 仓库, repository 将失去作用
repository 仓库 可以配置在pom.xml也可以配置在setting.xml的标签下
如果使用私服,并且涉及到密码,就需要配置标签,
账号密码如何匹配仓库 server的标签与response的
同理如果使用了私服镜像,server的标签需要等于mirror的(注:一般使用了私服也不要使用镜像来拦截远程仓库了,直接使用response配置的私服地址即可^_^)
私服是架设在局域网的一种特殊的远程仓库,目的是代理远程仓库及部署第三方构件。 有了私服之后,当 Maven
需要下载依赖时,直接请求私服,私服上存在则下载到本地仓库;否则,私服请求外部的远程仓库,将构件下载到私服,再提供给本地仓库下载。
私服可以解决在企业做开发时每次需要的jar包都要在中心仓库下载,且每次下载完只能被自己使用,不能被其他开发人员使用
所谓私服就是一个服务器,但是不是本地层面的,是公司层面的,公司中所有的开发人员都在使用同一个私服
我们可以使用专门的 Maven 仓库管理软件来搭建私服,比如:Apache Archiva,Artifactory,Sonatype Nexus。
安装,使用可以参考https://blog.csdn.net/m0_52994499/article/details/120640869
Maven关联私服
配置settings.xml,设置私服地址、认证等信息
<servers> <server> <id>nexus-public</id> <!-- nexus的认证id --> <username>admin</username> <!--nexus中的用户名密码--> <password>admin123</password> </server> </servers> <!--使用镜像拦截,jar包请求先拦截请求阿里云,找不到再去私有仓库服务器--> <mirror> <id>aliyunmaven</id> <mirrorOf>*,!nexus-public</mirrorOf> <name>阿里云公共仓库</name> <url>https://maven.aliyun.com/repository/public</url> </mirror> <profiles> <profile> <id>nexus</id> <repositories> <!--私服配置--> <repository> <id>nexus-public</id> <!--nexus认证id 【此处的repository的id要和 <server>的id保持一致】--> <!--name随便--> <name>Nexus Release Snapshot Repository</name> <!--地址是nexus中仓库组对应的地址--> <url>http://localhost:8081/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> <!--maven默认远程仓库--> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Maven Repository Switchboard</name> <url>http://repo1.maven.org/maven2</url> </repository> </repositories> <pluginRepositories> <!--插件仓库地址,各节点的含义和上面是一样的--> <pluginRepository> <id>nexus-public</id> <!--nexus认证id 【此处的repository的id要和 <server>的id保持一致】--> <!--地址是nexus中仓库组对应的地址--> <url>http://localhost:8081/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>your other profile</activeProfile> <!-- 使私服配置生效 --> <activeProfile>nexus</activeProfile> </activeProfiles>
Maven项目部署到私服
执行 :mvn deploy 即可将项目部署到私服对应的仓库中,此时项目中的打包方式多为jar
但需要提前在项目的pom.xml中配置部署私服仓库位置,如下:
... <dependencies> ..... </dependencies> <!-- 在项目的pom.xml中 配置私服的仓库地址,可以将项目打jar包部署到私服 --> <distributionManagement> <repository> <id>nexus-public</id> <!-- nexus认证id --> <url>http://localhost:8081/nexus/content/repositories/releases</url> </repository> <snapshotRepository> <id>nexus-public</id> <!-- nexus认证id --> <url>http://localhost:8081/nexus/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>
Maven分模块开发
1.先创建父工程,pom.xml文件中,打包方式为pom
2.右键父工程创建子工程,dao工程和service工程打包方式为jar,web工程打包方式为war
3.每完成一个模块后需要install,如果在IDEA中install时报错(JDK版本过低),需要在父工程的pom.xml文件中配置如下代码
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<!--<encoding-->
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
如何查看依赖包到底从哪个仓库下载的,可以查看先详细日志
mvn clean package -DskipTests docker:build -s /home/xxx/.m2/settings.xml -Dmaven.repo.local=/home/xxx/.m2/repository -f /xxx/.pom.xml
命令说明:
package:打包
install:保存到本地仓库
-DskipTests:忽略测试类
docker:build:生成docker镜像
-s:指定settings文件
-f: 指定pom文件
-Dmaven.repo.local:指定本地仓库地址
参考
https://blog.csdn.net/m0_51527921/article/details/126580563
https://www.cnblogs.com/iceJava/p/10356309.html
https://blog.csdn.net/m0_52994499/article/details/120640869
https://blog.csdn.net/gaoyaopeng/article/details/114986275
https://blog.csdn.net/abu935009066/article/details/124206273
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。