首页 > 其他分享 >pom文件管理

pom文件管理

时间:2023-02-25 17:00:25浏览次数:35  
标签:文件 DartifactId 管理 cas jar commons client pom install

#mvn install:install-file -Dfile=D:/soft/apache-maven-3.8.6/lib/cas-client-core-3.4.1.jar -DgroupId=cas-client-core -DartifactId=cas-client-core  -Dversion=3.4.1 -Dpackaging=jar
#
#mvn install:install-file -Dfile=D:/soft/apache-maven-3.8.6/lib/commons-codec-1.6.jar -DgroupId=commons-codec -DartifactId=commons-codec -Dversion=1.6 -Dpackaging=jar
#
#mvn install:install-file -Dfile=D:/soft/apache-maven-3.8.6/lib/commons-lang-2.4.jar -DgroupId=commons-lang -DartifactId=commons-lang -Dversion=2.4 -Dpackaging=jar
#
#mvn install:install-file -Dfile=D:/soft/apache-maven-3.8.6/lib/commons-logging-1.0.3.jar -DgroupId=commons-logging -DartifactId=commons-logging -Dversion=1.0.3 -Dpackaging=jar
#
#mvn install:install-file -Dfile=D:/soft/apache-maven-3.8.6/lib/uccp-cas-client-1.3.1-RELEASE.jar -DgroupId=uccp-cas-client -DartifactId=uccp-cas-client -Dversion=1.3.1 -Dpackaging=jar

<!--统一身份认证-->
<dependency>
<groupId>cas-client-core</groupId>
<artifactId>cas-client-core</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>uccp-cas-client</groupId>
<artifactId>uccp-cas-client</artifactId>
<version>1.3.1</version>
</dependency>



标签:文件,DartifactId,管理,cas,jar,commons,client,pom,install
From: https://www.cnblogs.com/gigi2653/p/17154780.html

相关文章

  • go依赖管理
    原始依赖管理方式1.Go语言可以利用本身的能力做基础依赖管理,几个重要的组件包括GOPATH工作目录,Go命令工具(getinstallbuild)等,通过goget下载依赖包的最新版本到GOPATH......
  • C#如何判断文件是否存在
    https://jingyan.baidu.com/article/ac6a9a5ead6ef86b653eac8b.html首先,我们定义一个字符串,名为path。然后,我们给他一个路径,这样才能判断是否存在。这时,我们就能在这里......
  • python笔记--在文件进行输出
    将print的内容输出到文件中1#将数据输出到文件中2fp=open('E:/text1.txt','a+')3print('helloword',file=fp)4fp.close()  1#不进行换行输出(在一行输出......
  • 如何用freemark根据指定模板生成文件
    1.添加maven<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-freemarker</artifactId></dependency>2.添加如下代码:......
  • ASP.NET中maxRequestLength和maxAllowedContentLength的区别;上传大文件设置IIS7文件上
    https://blog.csdn.net/qq_23663693/article/details/89920039maxRequestLength表示ASP支持的最大请求大小,而maxAllowedContentLength指定IIS支持的请求中内容的最大长度......
  • 文件变更
    newfile:mvnwnewfile:mvnw.cmdnewfile:src/main/resources/static/css/beizi.cssnewfile:src/main/resources/static/css/common.c......
  • shell脚本修改配置文件案例
    [root@bigdata01~/install]#vimchange-yarn-site.sh#!bin/bash#此脚本对大数据集群所有节点的yarn-site.xml文件根据集群配置自动更改对应配置。HOST_LIST=`grep'bi......
  • system管理kafka
    [root@ajsh-dev006systemd]#cat/usr/lib/systemd/system/kafka.service[Unit]Description=kafka[Service]User=rootLimitNOFILE=65535LimitNPROC=65535Environ......
  • system管理zookeeper
    [root@ajsh-dev006systemd]#cat/usr/lib/systemd/system/zk.service[Unit]Description=zookeeper.serviceAfter=network.target[Service]User=rootGroup=root......
  • 892~893 maven概述,依赖管理的概念
    Maven:1.1、概述:Maven是一个项目管理工具,它包含了一个项目对象模型(POM:ProjectObjectModel),一组标准集合,一个项目生命周期(ProjectLifecycle),......