赞
踩
- <build>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <executions>
- <execution>
- <id>install-external</id>
- <phase>clean</phase>
- <configuration>
- <file>${project.basedir}/lib/opencv-341.jar</file>
- <repositoryLayout>default</repositoryLayout>
- <groupId>org.opencv</groupId>
- <artifactId>opencv</artifactId>
- <version>1.0</version>
- <packaging>jar</packaging>
- <generatePom>true</generatePom>
- </configuration>
- <goals>
- <goal>install-file</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </build>

然后 Maven clear
引用方式
- <dependency>
- <groupId>org.opencv</groupId>
- <artifactId>opencv</artifactId>
- <version>1.0</version>
- </dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。