zoukankan      html  css  js  c++  java
  • maven-调用不同项目里面的方法 的 方法

    maven 教程: https://www.runoob.com/maven/maven-tutorial.html

     

    ide 引入其他项目的 方法 https://zhuanlan.zhihu.com/p/162148379 (还没试)

    2个子项目 用maven 使他们可以相互调用  https://www.cnblogs.com/tibit/p/6185704.html

    pom.xml文件

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.b_end</groupId>
        <artifactId>BB</artifactId>
        <version>1.0-SNAPSHOT</version>
        
    <!--    加上这个调用个CC子项目的方法-->
        <dependencies>
            <dependency>
                <groupId>org.b_end</groupId>
                <artifactId>CC</artifactId>
                <version>1.0-SNAPSHOT</version>
            </dependency>
        </dependencies>
    
        <properties>
            <maven.compiler.source>8</maven.compiler.source>
            <maven.compiler.target>8</maven.compiler.target>
        </properties>
    
    
    
    </project>
    

    后计:

    调用其他项目里面的方法和上面一样,也是在maven文件里面添加(实际maven 就是从仓库哪里拿而已)

    如果调用的项目发生更新,也要更新maven仓库里面的资料,先clean 再 install 

  • 相关阅读:
    python学习day7
    python学习day4
    python 学习day6(面向对象)
    python 学习day5(模块)
    python学习之正则表达式
    python作业day4计算器
    python作业day3修改配置文件
    Python作业day2购物车
    python学习day2(二)
    操作系统 银行家算法
  • 原文地址:https://www.cnblogs.com/kaibindirver/p/15423122.html
Copyright © 2011-2022 走看看