json-taglib-0.4.1在IDEA中使用maven導不進去

咱們在pom文件中導入java

      <dependency>
          <groupId>json-taglib</groupId>
          <artifactId>json-taglib</artifactId>
          <version>0.4.1</version>
      </dependency>

這個能夠看見json

這個到不進去,maven倉庫中沒有這個包。maven

解決辦法:
1:url

json-taglib依賴:spa

      <dependency>
          <groupId>atg.taglib.json</groupId>
          <artifactId>json-taglib</artifactId>
          <version>0.4.1</version>
      </dependency>

指定倉庫:.net

    <repositories>
        <repository>
            <id>java.net</id>
            <url>http://maven.jahia.org/maven2</url>
        </repository>
    </repositories>

2:code

本身下載json-taglib 0.4.1 jar包安裝在本身本地倉庫,之後導包就會從本地導包。(推薦)blog

下載地址:https://sourceforge.net/projects/json-taglib/get

下面是一個json包導入命令,能夠參考一下:it

(1. 安裝指定文件到本地倉庫命令:mvn install:install-file
(2. -DgroupId=<groupId>       : 設置項目代碼的包名(通常用組織名)
(3. -DartifactId=<artifactId> : 設置項目名或模塊名
(4. -Dversion=1.0.0           : 版本號
(5. -Dpackaging=jar           : 什麼類型的文件(jar包)
(6. -Dfile=<myfile.jar>       : 指定jar文件路徑與文件名(同目錄只需文件名)
(7. 安裝命令實例:
mvn install:install-file -DgroupId=<group_name> -DartifactId=<artifact_name> -Dversion=<version_no> -Dfile=<path_of_the_local_jar> -Dpackaging=jar 

下面是個人安裝命令:

mvn install:install-file -Dfile=C:\Users\liweichuan\Downloads\json-taglib-0.4.1.jar  -DgroupId=json-taglib -DartifactId=json-taglib -Dversion=0.4.1 -Dpackaging=jar

附上截圖:

就能夠正常使用了。

相關文章
相關標籤/搜索