废话不多说,直接上干货!
1.nexus 创建
使用docker-compose 或者其他形式先创建 创建一个docker-compose.yml文件
version: '3'
services:
nexus:
container_name: nexus
image: sonatype/nexus3
restart: always
ports:
- '8181:8081'
# 数据卷的映射
volumes:
- /apps/nexus/data:/nexus-data
- /apps/nexus/logs:/nexus-data/log
执行
docker-compose up -d
提前关闭防火墙
systemctl stop firewalld.service
登陆下 账号 admin 登陆 密码在这
重点三个仓库 分别是 maven-public maven-releases maven-snapshots 默认已经有了 无需任何配置,只要能访问看到这几个仓库即可
2.setting文件的maven配置
-
记得讲文件中的 maven.vyibc.com 改成 你自己的 ip
-
文件中 同时也展示了了双maven仓库时候如何配置
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
| This is the configuration file for Maven. It can be specified at two levels:
|
| 1. User Level. This settings.xml file provides configuration for a single user,
| and is normally provided in ${user.home}/.m2/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -s /path/to/user/settings.xml
|
| 2. Global Level. This settings.xml file provides configuration for all Maven
| users on a machine (assuming they're all using the same Maven
| installation). It's normally provided in
| ${maven.home}/conf/settings.xml.
|
| NOTE: This location can be overridden with the CLI option:
|
| -gs /path/to/global/settings.xml
|
| The sections in this sample file are intended to give you a running start at
| getting the most out of your Maven installation. Where appropriate, the default
| values (values used when the setting is not specified) are provided.
|
|-->
<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
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<!-- interactiveMode
| This will determine whether maven prompts you when it needs input. If set to false,
| maven will use a sensible default value, perhaps based on some other setting, for
| the parameter in question.
|
| Default: true
<interactiveMode>true</interactiveMode>
-->
<!-- offline
| Determines whether maven should attempt to connect to the network when executing a build.
| This will have an effect on artifact downloads, artifact deployment, and others.
|
| Default: false
<offline>false</offline>
-->
<!-- pluginGroups
| This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
| when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
| "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
|-->
<pluginGroups>
<!-- pluginGroup
| Specifies a further group identifier to use for plugin lookup.
<pluginGroup>com.your.plugins</pluginGroup>
-->
<!-- <pluginGroup></pluginGroup> -->
</pluginGroups>
<!-- proxies
| This is a list of proxies which can be used on this machine to connect to the network.
| Unless otherwise specified (by system property or command-line switch), the first proxy
| specification in this list marked as active will be used.
|-->
<proxies>
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
|
<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>
-->
</proxies>
<!-- servers
| This is a list of authentication profiles, keyed by the server-id used within the system.
| Authentication profiles can be used whenever maven must make a connection to a remote server.
|-->
<servers>
<server>
<id>shuwei-snapshots</id>
<username>admin</username>
<password>****</password>
</server>
<server>
<id>shuwei-releases</id>
<username>admin</username>
<password>****</password>
</server>
<server>
<id>vyibc-snapshots</id>
<username>admin</username>
<password>****</password>
</server>
<server>
<id>vyibc-releases</id>
<username>admin</username>
<password>****</password>
</server>
</servers>
<!-- mirrors
| This is a list of mirrors to be used in downloading artifacts from remote repositories.
|
| It works like this: a POM may declare a repository to use in resolving certain artifacts.
| However, this repository may have problems with heavy traffic at times, so people have mirrored
| it to several places.
|
| That repository definition will have a unique id, so we can create a mirror reference for that
| repository, to be used as an alternate download site. The mirror site will be the preferred
| server for that repository.
|-->
<mirrors>
<mirror>
<id>shuwei-releases</id>
<mirrorOf>shuwei-releases</mirrorOf>
<name>shuwei-releases</name>
<url>http://maven.vyibc.com:8181/repository/maven-public/</url>
</mirror>
<mirror>
<id>shuwei-snapshots</id>
<mirrorOf>shuwei-snapshots</mirrorOf>
<name>shuwei-snapshots</name>
<url>http://maven.vyibc.com:8181/repository/maven-public/</url>
</mirror>
<mirror>
<id>vyibc-releases</id>
<mirrorOf>vyibc-releases</mirrorOf>
<name>vyibc-releases</name>
<url>http://maven.vyibc.com:8181/repository/maven-public/</url>
</mirror>
<mirror>
<id>vyibc-snapshots</id>
<mirrorOf>vyibc-snapshots</mirrorOf>
<name>vyibc-snapshots</name>
<url>http://maven.vyibc.com:8181/repository/maven-public/</url>
</mirror>
<mirror>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
<mirror>
<!--This is used to direct the public snapshots repo in the
profile below over to a different nexus group -->
<id>nexus-public-snapshots</id>
<mirrorOf>public-snapshots</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/repositories/snapshots/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>shuwei</id>
<!--all requests to nexus via the mirror -->
<repositories>
<repository>
<id>shuwei-releases</id>
<url>http://maven.vyibc.com:8181/repository/maven-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>shuwei-snapshots</id>
<url>http://maven.vyibc.com:8181/repository/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>vyibc</id>
<!--all requests to nexus via the mirror -->
<repositories>
<repository>
<id>vyibc-releases</id>
<url>http://maven.vyibc.com:8181/repository/maven-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>vyibc-snapshots</id>
<url>http://maven.vyibc.com:8181/repository/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>shuwei</activeProfile>
<activeProfile>vyibc</activeProfile>
</activeProfiles>
</settings>
3.项目中的maven 配置
在根目录下配置
<repositories>
<repository>
<id>shuwei-releases</id>
<url>http://maven.vyibc.com:8181/repository/maven-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>shuwei-snapshots</id>
<url>http://maven.vyibc.com:8181/repository/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>shuwei-releases</id>
<url>http://maven.vyibc.com:8181/repository/maven-releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>shuwei-snapshots</id>
<url>http://maven.vyibc.com:8181/repository/maven-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>shuwei-releases</id>
<url>http://maven.vyibc.com:8181/repository/maven-releases</url>
</repository>
<snapshotRepository>
<id>shuwei-snapshots</id>
<url>http://maven.vyibc.com:8181/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
4.测试 pull和 push jar包
此时就可以在项目正常 pull和 push maven的 jar包了