cpdetector1.0.7包下载地址及maven安装离线jar包

本文提供了如何下载并使用cpdetector的详细步骤,包括从SourceForge下载cpdetector_1.0.7_binary.zip,通过Maven的install-file命令进行离线安装,并在父工程和子工程的pom.xml中配置依赖。此外,还给出了子工程中添加自定义仓库ebi的配置。
摘要由CSDN通过智能技术生成

https://sourceforge.net/projects/cpdetector/files/cpdetector/binaries/cpdetector_1.0.7_binary.zip/download

这里就能下载。包里有jar文件

maven安装离线包

mvn install:install-file "-DgroupId=cpdetector" "-DartifactId=cpdetector" "-Dversion=1.0.7" "-Dpackaging=jar" "-Dfile=C:\Users\cpdetector-1.0.7.jar"

父工程中

pom.xml


            <cpdetector.version>1.0.7</cpdetector.version>
        
            <!-- 第三方cpdetector获取文件编码格式-->
            <dependency>
                <groupId>cpdetector</groupId>
                <artifactId>cpdetector</artifactId>
                <version>${cpdetector.version}</version>
            </dependency>

子工程中

pom.xml


    <dependencies>
        <!--第三方cpdetector获取文件编码格式-->
        <dependency>
            <groupId>cpdetector</groupId>
            <artifactId>cpdetector</artifactId>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>ebi</id>
            <name>www.ebi.ac.uk</name>
            <url>http://www.ebi.ac.uk/intact/maven/nexus/content/groups/public/</url>
        </repository>
    </repositories>
    
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值