英文:
How to include the google OR-tools in spring boot application?
问题
我正在使用Linux机器,以IntelliJ作为开发IDE。我需要在Spring Boot应用程序中引入Google OR-tools。我应该如何做呢?
英文:
I am using the Linux machine, IntelliJ as the IDE for development. I need to include the Google OR-tools in the spring boot application. How should I do that?
答案1
得分: 1
将以下依赖项添加到POM.xml文件的<dependencies>标签中。根据您需要的版本进行更改。
<dependency>
<groupId>com.google.ortools</groupId>
<artifactId>ortools</artifactId>
<version>v2015-09</version>
</dependency>
运行 mvn clean install
英文:
Add the below dependency in POM.xml in <dependencies> tag. Change the version you need.
<dependency>
<groupId>com.google.ortools</groupId>
<artifactId>ortools</artifactId>
<version>v2015-09</version>
</dependency>
Run mvn clean install
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论