paascloud友情提供nexus私服

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

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

私服地址

http://nexus.paascloud.net

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

settings.xml配置


<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>D:/Java/maven/localRepositorylocalRepository>
  <interactiveMode>trueinteractiveMode>
  <offline>falseoffline>
  <pluginGroups>
    <pluginGroup>org.mortbay.jettypluginGroup>
    <pluginGroup>org.jenkins-ci.toolspluginGroup>
  pluginGroups>

  
  <servers>
    <server>
      <id>my-lib-repoid>
      <username>paascloud_developusername>
      <password>https://github.com/paascloudpassword>
    server>
    <server>
      <id>my-lib-repo-3rdpartyid>
      <username>paascloud_developusername>
      <password>https://github.com/paascloudpassword>
    server>
    <server>
      <id>paascloud-lib-repid>
      <username>paascloud_developusername>
      <password>https://github.com/paascloudpassword>
    server>
  servers>

  <mirrors>
    <mirror>
      <id>aliyun-repoid>
      <mirrorOf>centralmirrorOf>
      <name>central mirrorname>
      <url>http://maven.aliyun.com/mvn/repositoryurl>
    mirror>
    <mirror>
      <id>my-lib-repoid>
      <mirrorOf>my-lib-repomirrorOf>
      <name>private mirrorname>
      <url>http://nexus.paascloud.net/content/repositories/releases/url>
    mirror>
    <mirror>
      <id>my-lib-repo-3rdpartyid>
      <mirrorOf>my-lib-repo-3rdpartymirrorOf>
      <name>private mirrorname>
      <url>http://nexus.paascloud.net/content/repositories/thirdparty/url>
    mirror>
  mirrors>

  <profiles>
    <profile>
      <id>liuzmid>
      <activation>
        <activeByDefault>trueactiveByDefault>
        <jdk>1.8jdk>
      activation>
      <properties>
        <maven.compiler.source>1.8maven.compiler.source>
        <maven.compiler.target>1.8maven.compiler.target>
        <maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>
      properties>
      <repositories>
        
        <repository>
          <id>my-lib-repoid>
          <url>http://nexus.paascloud.net/content/repositories/releases/url>
          <releases>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          releases>
          <snapshots>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          snapshots>
        repository>
        <repository>
          <id>my-lib-repo-3rdpartyid>
          <url>http://nexus.paascloud.net/content/repositories/thirdparty/url>
          <releases>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          releases>
          <snapshots>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          snapshots>
        repository>
      repositories>
      <pluginRepositories>
        
        <pluginRepository>
          <id>my-lib-repoid>
          <url>http://nexus.paascloud.net/content/repositories/releases/url>
          <releases>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          releases>
          <snapshots>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          snapshots>
        pluginRepository>
        <pluginRepository>
          <id>my-lib-repo-3rdpartyid>
          <url>http://nexus.paascloud.net/content/repositories/thirdparty/url>
          <releases>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          releases>
          <snapshots>
            <enabled>trueenabled>
            <updatePolicy>alwaysupdatePolicy>
          snapshots>
        pluginRepository>
      pluginRepositories>

    profile>
  profiles>
  
  <activeProfiles>
    <activeProfile>liuzmactiveProfile>
  activeProfiles>
settings>

我的开源项目

  • github: https://github.com/paascloud/paascloud-master
  • 码云:https://gitee.com/paascloud/paascloud-master

你可能感兴趣的:(springcloud)