• 【Java】Java引用maven私服jar包及jar包提交私服问题


    pom.xml中加入以下配置即可

    1.引用私服jar包

        <!-- 加载的是 第三方项目使用的jar包 -->
        <repositories>
            <repository>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
                <id>java</id>
                <name>java</name>
                <url>http://192.168.8.100:8081/repository/java/</url>
            </repository>
        </repositories>
    
        <!--加载的是maven生命周期插件的jar包-->
        <pluginRepositories>
            <pluginRepository>
                <releases>
                    <updatePolicy>never</updatePolicy>
                </releases>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
                <id>java</id>
                <name>java</name>
                <url>http://192.168.8.100:8081/repository/java/</url>
            </pluginRepository>
    </pluginRepositories>

     2.jar包提交私服

        <distributionManagement>
        <!--    <repository>
                <id>nexus-aliyun</id>
                <name>Nexus aliyun</name>
                <url>http://maven.aliyun.com/nexus/content/groups/public</url>
            </repository>-->
            <repository>
                <id>releases</id>
                <url>http://192.168.8.100:8081/repository/java/</url>
            </repository>
            <snapshotRepository>
                <id>Snapshots</id>
                <url>http://192.168.8.100:8081/repository/java/</url>
            </snapshotRepository>
        </distributionManagement>
  • 相关阅读:
    线程池进程池
    设计原则与设计模式
    腾讯阿里第三方接入
    计划任务
    系统服务
    Python Faker模块
    Python openpyxl模块
    Python-docx模块
    进程管理
    磁盘管理
  • 原文地址:https://www.cnblogs.com/jxd283465/p/11598500.html
Copyright © 2020-2023  润新知