paascloud友情提供nexus私服

简介: 从问卷调查中显示,目前大部分人仍然不能跑起来项目,其中最主要的是两部分原因: 1. spring cloud 配置中心使用不当; 2.

从问卷调查中显示,目前大部分人仍然不能跑起来项目,其中最主要的是两部分原因:
1. spring cloud 配置中心使用不当;
2. maven依赖的三方jar包找不到;

针对第一点详细写了spring cloud 非对称加密的配置和使用,如果不清楚翻看上一篇博客 ,为此给大家带来的不便,笔者深感抱歉,为此决定给大家提供统一免费的私服,来解决jar包找不到而项目无法运行的问题,希望每一个人都能把项目跑起来,来和笔者一起投入到paascloud的开发和维护中来,让越来越多的人和企业能快速的了解和使用paascloud,啰嗦了几句下面开始正题。

私服地址

http://nexus.paascloud.net

用户名:paascloud_develop
密码: https://github.com/paascloud

settings.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<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仓库中下载的文件的存储的位置 -->
  <localRepository>D:/Java/maven/localRepository</localRepository>
  <interactiveMode>true</interactiveMode>
  <offline>false</offline>
  <pluginGroups>
    <pluginGroup>org.mortbay.jetty</pluginGroup>
    <pluginGroup>org.jenkins-ci.tools</pluginGroup>
  </pluginGroups>

  <!--配置权限,使用默认用户-->
  <servers>
    <server>
      <id>my-lib-repo</id>
      <username>paascloud_develop</username>
      <password>https://github.com/paascloud</password>
    </server>
    <server>
      <id>my-lib-repo-3rdparty</id>
      <username>paascloud_develop</username>
      <password>https://github.com/paascloud</password>
    </server>
    <server>
      <id>paascloud-lib-rep</id>
      <username>paascloud_develop</username>
      <password>https://github.com/paascloud</password>
    </server>
  </servers>

  <mirrors>
    <mirror>
      <id>aliyun-repo</id>
      <mirrorOf>central</mirrorOf>
      <name>central mirror</name>
      <url>http://maven.aliyun.com/mvn/repository</url>
    </mirror>
    <mirror>
      <id>my-lib-repo</id>
      <mirrorOf>my-lib-repo</mirrorOf>
      <name>private mirror</name>
      <url>http://nexus.paascloud.net/content/repositories/releases/</url>
    </mirror>
    <mirror>
      <id>my-lib-repo-3rdparty</id>
      <mirrorOf>my-lib-repo-3rdparty</mirrorOf>
      <name>private mirror</name>
      <url>http://nexus.paascloud.net/content/repositories/thirdparty/</url>
    </mirror>
  </mirrors>

  <profiles>
    <profile>
      <id>liuzm</id>
      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.8</jdk>
      </activation>
      <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
      </properties>
      <repositories>
        <!-- 私有库地址-->
        <repository>
          <id>my-lib-repo</id>
          <url>http://nexus.paascloud.net/content/repositories/releases/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </repository>
        <repository>
          <id>my-lib-repo-3rdparty</id>
          <url>http://nexus.paascloud.net/content/repositories/thirdparty/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <!--插件库地址-->
        <pluginRepository>
          <id>my-lib-repo</id>
          <url>http://nexus.paascloud.net/content/repositories/releases/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </pluginRepository>
        <pluginRepository>
          <id>my-lib-repo-3rdparty</id>
          <url>http://nexus.paascloud.net/content/repositories/thirdparty/</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>

    </profile>
  </profiles>
  <!-- 激活配置,指定哪些配置被激活 -->
  <activeProfiles>
    <activeProfile>liuzm</activeProfile>
  </activeProfiles>
</settings>

我的开源项目

目录
相关文章
|
5月前
|
JSON API 开发者
亚马逊商品 API接口,开发者详解与使用指南
亚马逊商品 API 是亚马逊平台为开发者提供的接口,支持获取商品信息、价格、库存、用户评价等数据。主要类型包括 Product Advertising API 和 Selling Partner API,适用于电商数据分析与管理。
|
JavaScript
vue elementUI select下拉框设置默认值
vue elementUI select下拉框设置默认值
2082 0
|
移动开发
解决网页、H5页面在手机端访问时,底部会有一段莫名其妙的空白,大约有几百像素高的留白
解决网页、H5页面在手机端访问时,底部会有一段莫名其妙的空白,大约有几百像素高的留白
|
运维 监控 开发者
平台工程实践,让应用开发如搭积木一般简单
在过去,传统的应用程序部署和管理通常是一个复杂且耗时的过程。这包括硬件和服务器的采购、配置、维护以及应用程序的手动部署和扩展。随着云原生概念的普及,虽然带来了扩展性、可用性等方面的改进,但也意味着运行单个脚本部署一个完整应用程序的日子一去不复返了。
302 0
|
Shell
RTOS支持STemWin(以RT-Thread为例)
RTOS支持STemWin(以RT-Thread为例)
232 0
|
编解码 Windows
Windows 微信兼容性问题:微信截图放大解决办法。
Windows 微信兼容性问题:微信截图放大解决办法。
1362 0
Windows 微信兼容性问题:微信截图放大解决办法。
|
消息中间件 存储 Kafka
关于MQ的几件小事(四)如何保证消息不丢失
介绍如何保证消息队列消息不丢失
关于MQ的几件小事(四)如何保证消息不丢失
|
网络协议
HTTP 报文是干什么的?底层原理是什么?
HTTP 报文是干什么的?底层原理是什么?
244 0
|
开发框架 前端开发 .NET
ASP.NET Core: 二十五. TagHelper(四)
什么是TagHelper?这是ASP.NET Core 中新出现的一个名词,它的作用是使服务器端代码可以在Razor 文件中参与创建和呈现HTML 元素。
158 0
|
1天前
|
云安全 人工智能 自然语言处理