标签:bsp ati com pen rect snapshot pre jar包 maven
<dependency> <groupId>com.demo</groupId> <artifactId>demo</artifactId> <version>1.0.1-SNAPSHOT</version> <scope>system</scope> <systemPath>${basedir}/src/main/resources/lib/core-1.0.1-SNAPSHOT.jar</systemPath> </dependency>
<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>${basedir}/src/main/resources/lib</directory> <targetPath>WEB-INF/lib</targetPath> <includes> <include>**/*.jar</include> </includes> </resource> </webResources> </configuration> </plugin> </plugins>
标签:bsp ati com pen rect snapshot pre jar包 maven
原文地址:https://www.cnblogs.com/hsiaochinchin/p/14013218.html