springboot reference tripartite jar package

In springboot project might be used in class party tools (such as when given access to SMS gateway tool jar package), this time the need to manually introducing the project came in springboot

1. springboot project directory under lib / ucpaas tripartite jar

 

 2. Modify the pom.xml

   <dependency>

            <groupId>com.ucpaas</groupId>

            <artifactId>commons-lang</artifactId>

            <version>2.3</version>

            <scope>system</scope>

            <type>jar</type>

            <systemPath>${project.basedir}/lib/ucpaas/commons-lang-2.3.jar</systemPath>

        </dependency>

        <dependency>

            <groupId>com.ucpaas</groupId>

            <artifactId>commons-logging</artifactId>

            <version>1.1.3</version>

            <scope>system</scope>

            <systemPath>${project.basedir}/lib/ucpaas/commons-logging-1.1.3.jar</systemPath>

        </dependency>

 

Guess you like

Origin www.cnblogs.com/tu13/p/java_springboot_jars.html