当前位置:   article > 正文

解密:Gradle 如何使用Maven本地缓存库(mavenLocal()默认路径)

mavenlocal()

mavenLocal()默认路径

Maven切换到Gradle,原有的几G的本地缓存库当然想继续使用。

如果想使用Maven本地缓存,需要定义:build.gradle 文件下定义

build.gradle
repositories {
    mavenLocal()
}
  • 1
  • 2
  • 3
  • 4

build.gradle的

mavenLocal()   //默认路径在/home/root/.m2/repository/下 
  • 1

Gradle使用与Maven相同的策略去定位本地Maven缓存的位置。如果在settings.xml中定义了本地Maven仓库的地址,则使用该地址。

在USER_HOME/.m2下的settings.xml文件中的配置会覆盖存放在M2_HOME/conf下的settings.xml文件中的配置。

如果没有settings.xml配置文件,Gradle会使用默认的USER_HOME/.m2/repository地址。

maven设置------setting.xml文件学习

快速预览

maven的配置文件为settings.xml,在下面路径中可以找到这个文件,分别为:
------ $M2_HOME/conf/settings.xml:全局设置,在maven的安装目录下;
------ ${user.home}/.m2/settings.xml:用户设置,需要用户手动添加,可以将安装目录下的settings.xml文件拷贝过来修改。
两个文件的关系为:如果两个文件同时存在,文件内容将被融合,相同设置将以用户设置的settings.xml为准。
该文件一共有10个配置项,文件结构为:

    <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">
        <localRepository/>
        <interactiveMode/>
        <usePluginRegistry/>
        <offline/>
        <pluginGroups/>
        <servers/>
        <mirrors/>
        <proxies/>
        <profiles/>
        <activeProfiles/>
    </settings>
    ```
 下面对每一个配置项做一个简要的讲解,帮助理解每一项的含义和配置方式,以便后面做更深入的学习:

简单属性
```javascript
<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">
	<localRepository>${user.home}/.m2/repository</localRepository>
	<interactiveMode>true</interactiveMode>
	<usePluginRegistry>false</usePluginRegistry>
	<offline>false</offline>
	...
</settings>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

localRepository:本地仓库路径,默认值 u s e r . h o m e / . m 2 / r e p o s i t o r y ; i n t e r a c t i v e M o d e : 值 为 t r u e / f a l s e , t r u e 表 示 m a v e 可 以 使 用 用 户 输 入 , 默 认 t r u e ; u s e P l u g i n R e g i s t r y : 值 为 t r u e / f a l s e , t r u e 表 示 m a v e n 使 用 {user.home}/.m2/repository; interactiveMode:值为true/false,true表示mave可以使用用户输入,默认true; usePluginRegistry:值为true/false,true表示maven使用 user.home/.m2/repositoryinteractiveModetrue/falsetruemave使trueusePluginRegistrytrue/falsetruemaven使{user.home}/.m2/plugin-registry.xml管理插件版本,默认为false;
offline:值为true/false,true表示构建系统在离线模式下执行,默认为false;

pluginGroups

每个pluginGroup元素都包含一个groupId,当你在命令行中没有提供插件的groupid时,将会使用该列表。这个列表自动包含org.apache.maven.plugins和org.codehaus.mojo。

<pluginGroups>
	<pluginGroup>org.mortbay.jetty</pluginGroup>
</pluginGroups>
  • 1
  • 2
  • 3

例如:在做了上面的配置后,直接执行如下简写形式的命令即可
mvn jetty:run

servers

POM中的repositories和distributionManagement元素为下载和部署定义的仓库。一些设置如服务器的用户名和密码不应该和pom.xml一起分发。这种类型的信息应该存在于构建服务器上的settings.xml文件中。

<servers>
	<server>
		<id>server001</id>
		<username>my_login</username>
		<password>my_password</password>
		<privateKey>${user.home}/.ssh/id_dsa</privateKey>
		<passphrase>some_passphrase</passphrase>
		<filePermissions>664</filePermissions>
		<directoryPermissions>775</directoryPermissions>
		<configuration></configuration>
	</server>
</servers>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

id:服务器的id,和repository/mirror中配置的id项匹配;
username,password:服务器的认证信息;
privateKey,passphrase:指定一个路径到一个私有key(默认为${user.home}/.ssh/id_dsa)和一个passphrase;
filePermissions,directoryPermissions:设置文件和文件夹访问权限,对应unix文件权限值,如:664,后者775.

注意:如果你使用一个已有key登录服务器,你必须忽略项,否则,key将会被忽略。

Mirrors

<mirrors>
	<mirror>
		<id>planetmirror.com</id>
		<name>PlanetMirror Australia</name>
		<url>http://downloads.planetmirror.com/pub/maven2</url>
		<mirrorOf>central</mirrorOf>
	</mirror>
</mirrors>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

id,name:镜像的唯一标识和用户友好的名称;
url:镜像的url,用于代替原始仓库的url;
mirrorof:使用镜像的仓库的id,可以使用下面匹配属性:
------:匹配所有仓库id;
------external:
:匹配所有仓库id,除了那些使用localhost或者基于仓库的文件的仓库;
------多个仓库id之间用逗号分隔;
------!repol:表示匹配所有仓库,除了repol。
注意:如果配置了多个仓库,首先匹配id精确匹配的镜像,否则maven使用第一个匹配的镜像。

proxies

代理服务器设置。

<proxy>
	<id>optional</id>
	<active>true</active>
	<protocol>http</protocol>
	<username>proxyuser</username>
	<password>proxypass</password>
	<host>proxy.host.net</host>
	<port>80</port>
	<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

id:可选,为代理服务器设置一个名称;
active:true/false,默认true;
protocol:代理服务器使用的协议类型;
username:用户名;
password:密码;
host:主机名,或者ip;
port:端口号;
nonProxyHosts:不使用代理服务器的主机类型,多个主机之间用’|'分隔,可使用通配符,如:*.somewhere.com。
profiles
这里的profile元素是pom.xml的profile元素的一个裁剪版本,它包含activation、repositories、pluginRepositories和properties元素。
如果一个在settins中的profile是激活的,它的值将覆盖在一个POM或者profiles.xml文件中的任何相同id的profiles。

Activation

通过Activation来指定profile生效的环境,具体见下:

<profiles>
	<profile>
		<id>test</id>
		<activation>
			<activeByDefault>false</activeByDefault>
			<jdk>1.5</jdk>
			<os>
				<name>Windows XP</name>
				<family>Windows</family>
				<arch>x86</arch>
				<version>5.1.2600</version>
			</os>
			<property>
				<name>mavenVersion</name>
				<value>2.0.3</value>
			</property>
			<file>
				<exists>${basedir}/file2.properties</exists>
				<missing>${basedir}/file1.properties</missing>
			</file>
		</activation>
		...
	</profile>
</profiles>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

activeByDefault:是否自动激活;
jdk:jdk版本,必须达到该版本后才能执行激活;
os:操作系统环境信息;
property:当maven探测到一个name=value值对时,profile才被激活;
file:文件exists或者missing可以激活该profile。

Properties

properties中的值可以在一个POM中通过 x 来 使 用 , x 比 哦 是 一 个 p r o p e r t y , 以 下 形 式 在 s e t t i o n g s . x m l 文 件 中 都 可 以 使 用 : − − e n v . X ; 表 示 使 用 一 个 环 境 变 量 , 如 : {x}来使用,x比哦是一个property,以下形式在settiongs.xml文件中都可以使用: --env.X;表示使用一个环境变量,如: x使xpropertysettiongs.xml使env.X使{env.PATH}表示使用PATH环境变量;
–project.x:标识在POM中的对应元素的值,如:1.0可以通过 p r o j e c t . v e r s i o n 引 用 ; − − s e t t i n g s . x : 在 s e t t i n s . x m l 中 包 含 的 对 应 元 素 的 值 , 如 : < s e t t i n g s > < o f f l i n e > f a l s e < / o f f l i n e > < / s e t t i n g s > 可 以 通 过 {project.version}引用; --settings.x:在settins.xml中包含的对应元素的值,如:<settings><offline>false</offline></settings>可以通过 project.versionsettings.xsettins.xml<settings><offline>false</offline></settings>{settings.offline}引用;
–Java System Properties:所有java.lang.System.getProperties()获取的属性都是可用的,如: j a v a . h o m e ; − − x : 在 < p r o p e r t i e s / > 中 或 者 一 个 扩 展 文 件 中 设 置 的 属 性 , 如 : {java.home}; --x:在<properties/> 中或者一个扩展文件中设置的属性,如: java.homex<properties/>{someVar};
配置方式为:

<profiles>
	<profile>
		...
		<properties>
			<user.install>${user.home}/our-project</user.install>
		</properties>
		...
	</profile>
</profiles>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

属性${user.install}就可以在POM中使用了。

Repositories
仓库。仓库是Maven用来填充构建系统本地仓库所使用的一组远程项目。而Maven是从本地仓库中使用其插件和依赖。不同的远程仓库可能含有不同的项目,而在某个激活的profile下,可能定义了一些仓库来搜索需要的发布版或快照版构件。

<repositories>
	<repository>
		<id>codehausSnapshots</id>
		<name>Codehaus Snapshots</name>
		<releases>
			<enabled>false</enabled>
			<updatePolicy>always</updatePolicy>
			<checksumPolicy>warn</checksumPolicy>
		</releases>
		<snapshots>
			<enabled>true</enabled>
			<updatePolicy>never</updatePolicy>
			<checksumPolicy>fail</checksumPolicy>
		</snapshots>
		<url>http://snapshots.maven.codehaus.org/maven2</url>
		<layout>default</layout>
	</repository>
</repositories>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

releases、snapshots:不同的版本策略,对应发布版本和快照版本;
enabled:true/false,对应类型是否激活;
updatePolicy:更新策略,maven将比较本地POM的时间戳(存储在仓库的maven-metadata文件中)和远端的,配置选项可以设置:always、daily(一天一次,默认),interval:x(x为一整数,单位分钟),never;
checksumPolicy:maven部署文件到仓库时,也会部署对应的校验和文件,你可以设置:ignore,fail或者warn用于当校验和文件不存在或者检验失败时的处理策略;
layout:上面提到的仓库大部分都遵循共同的布局,可以配置:default(默认)或者legacy(遗留);

pluginRepositories

插件仓库。仓库是两种主要构件的家。第一种构件被用作其它构件的依赖。这是中央仓库中存储大部分构件类型。另外一种构件类型是插件。Maven插件是一种特殊类型的构件。由于这个原因,插件仓库独立于其它仓库。pluginRepositories元素的结构和repositories元素的结构类似。每个pluginRepository元素指定一个Maven可以用来寻找新插件的远程地址。

activeProfiles
<activeProfiles>
	<activeProfile>env-test</activeProfile>
</activeProfiles>
  • 1
  • 2
  • 3
  • 4

activeProfile中间定义activeProfile的id,在这里定义的activeProfile总是被激活,不关心环境设置,如果配置的id的profile没有发现,将没有任何事发生。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/266258?site
推荐阅读
相关标签
  

闽ICP备14008679号