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