如何将Google OR-Tools包含在Spring Boot应用程序中?

huangapple go评论68阅读模式
英文:

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.

&lt;dependency&gt;
    &lt;groupId&gt;com.google.ortools&lt;/groupId&gt;
    &lt;artifactId&gt;ortools&lt;/artifactId&gt;
    &lt;version&gt;v2015-09&lt;/version&gt;
&lt;/dependency&gt;

Run mvn clean install

huangapple
  • 本文由 发表于 2020年8月17日 17:14:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/63447916.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定