首页 > 其他分享 >IntelliJ IDEA maven配置,设置pom.xml的配置文件

IntelliJ IDEA maven配置,设置pom.xml的配置文件

时间:2023-08-23 20:11:39浏览次数:46  
标签:xml IntelliJ 配置文件 jar IDEA pom 设置

IntelliJ IDEA项目,选择  文件  设置,弹窗 构建、执行、部署 构建工具 Maven就可以 maven配置好以后,在pom.xml的配置文件中就可以设置对应的jar包了,这样构建的时候自动需要的jar,在项目中导入即

 

 需要的jar包设置在pom.xml中设置即可,仓库:https://mvnrepository.com/,aliyun仓库: https://developer.aliyun.com/mvn/search

<?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.example</groupId>
    <artifactId>SM345</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>
    <dependencies>
        <!--sm3,sm4加密算法-->
        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcprov-jdk15on</artifactId>
            <version>1.66</version>
        </dependency>
    </dependencies>
</project>

 点击构建,之后子啊需要的项目引入jar即可(import ......)

 

标签:xml,IntelliJ,配置文件,jar,IDEA,pom,设置
From: https://www.cnblogs.com/1175429393wljblog/p/17652677.html

相关文章

  • Intellij Idea 不区分大小写(自动提示)
    使用idea工具的时候,用户输入几个字母就能提示可能的类名或变量名,在使用时很方便但是默认配置下工具会区分大小写,导致不能达到预期提示效果比如输入st,并不能提示出String等原来是改casesensitive的设置新版idea的改成了Matchcase,去掉勾选就行 所以碰到大小写的,直接搜case......
  • XML
    什么是xml以及他的作用第一个xml示范文件<?xmlversion="1.0"encoding="UTF-8"?><!--<?xmlversion="1.0"encoding="UTF-8?>以上内容就是xml文件的声明version="1.0"version表示xml的版本encoding="UTF-8?encoding表示xml文......
  • webbrowser显示xml, xml通过xslt转xhtml
    为WebBrowser控件增加显示XML文档接口(c#)ShowXMLinWebBrowsercontrol https://learn.microsoft.com/en-us/answers/questions/1181957/show-xml-in-webbrowser-controlViewXMLFilesEasilywithXmlGridViewControlhttps://www.codeproject.com/articles/16497/view-xml......
  • Nginx配置文件整体结构
       ......
  • 读取转换规则中的单据类型映射(处理SQLSERVER的XML字段)
    DataSetdsBillTypeMap=null;stringsql=string.Format(@"/*dialect*/SELECTFKERNELXML.query('//BillTypeMaps')BillTypeMaps,FID......
  • Java_读取xml文件;
    功能:java读取xml文件源码;=>person.xml<?xmlversion="1.0"encoding="UTF-8"?><book> <persona='av'b='bv'> <first>wang</first> <last>laohu</last> <age>25</a......
  • 了解 xml
    https://www.cnblogs.com/bingyizhihun/p/15116222.htmlhttps://www.bilibili.com/video/BV1Na4y1J75w/?spm_id_from=333.337.search-card.all.click 1-2 xml发明的目的:   传输和存储数据。xml发明的目的:   传输和存储数据。xml发明的目的:   传输和存储数......
  • 无涯教程-PHP - XML GET
    XMLGet已用于从xml文件获取节点值。以下示例显示了如何从xml获取数据。Note.xml是xml文件,可以通过php文件访问。<SUBJECT><COURSE>Android</COURSE><COUNTRY>India</COUNTRY><COMPANY>LearnFk</COMPANY><PRICE>$10</PRICE></SUBJECT&......
  • SpringBoot复习:(41)配置文件中配置的server开头的属性是怎么配置到Servlet容器中起作用
    ServletWebServerFactoryAutoConfiguration类:可以看到其中使用了@EnableConfigurationProperties导入了ServerProperties而ServerProperties通过使用@ConfigurationProperties注解导入了配置文件中已server开头的那些配置项。可以看到ServletWebServerFactory定义了一个类型为Se......
  • Odoo - xml 的action/search继承修改
    直接对action动作视图进行修改<?xmlversion="1.0"encoding="UTF-8"?><odoo><recordmodel="ir.actions.act_window"id="(模块名).(想要修改的action_id)"><fieldname="domain">[('asset_ty......