How to add Maven dependency jar file from the lib folder

前端 未结 4 2186
悲&欢浪女
悲&欢浪女 2021-02-19 08:07

I am trying to add a jar file to the Maven dependency in my project. The settings.xml is configured to set the repository to a public repository. But this particular jar is not

相关标签:
4条回答
  • 2021-02-19 08:22

    Have a look at system dependencies.

    You basically need to define <scope>system</scope>.

    <project>
        ...
        <dependencies>
          <dependency>
            <groupId>javax.sql</groupId>
            <artifactId>jdbc-stdext</artifactId>
            <version>2.0</version>
            <scope>system</scope>
            <systemPath>${java.home}/lib/rt.jar</systemPath>
          </dependency>
        </dependencies>
        ...
    </project>
    

    This is if you don't have your own hosted artifact repository server such as Nexus, Artifactory or Archiva.

    If you do, then as Karl-Heinz suggested, you would be better off placing it there, as it's not good practice to commit binary artifacts to version control.

    0 讨论(0)
  • 2021-02-19 08:22

    Another option is to set up a repository that is backed by a directory inside your project, per this answer: https://stackoverflow.com/a/2230464/433789

    0 讨论(0)
  • 2021-02-19 08:23

    The best solution is to start using a repository manager like Nexus and put it there. Or you can use the non-maven-jar-plugin.

    0 讨论(0)
  • 2021-02-19 08:23

    Changing pom.xml worked for me (jar in "/lib" directory in the root project folder) :

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.6</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/gson-2.8.6.jar</systemPath>
        </dependency>
    
    0 讨论(0)
提交回复
热议问题