在IDEA上手工导入nGrinder Maven工程缺失的基本依赖jar包,解决无法通过ngrinder给的mawen仓库地址下载依赖包问题

遇到的问题提示:
基于ngrinder二次开发时遇到问题提示:
“Could not transfer artifact grinder:grinder-patch:pom:3.9.1-patch from/to ngrinder.maven.repo(https://github.com/naver/ngrinder/raw/ngrinder.maven.repo/releases): 请求的名称有效,但是找不到请求的类型的数据。“,根据百度这提示,就是网络问题导致,经查证或是官网仓库本身就找不到jar包。
解决过程思路:
让ngrinder的maven工程导入idea进行调试时,少了各种jar包,并且按照pom.xml上的地址(https://github.com/naver/ngrinder/raw/ngrinder.maven.repo/releases)前往显示有ngrinder-groovy.jar包,可以手动点击download,但跳出页面提示网络问题,根本无法通过maven依赖下载下来,所以只能找到它的jar包,当然找到大神告诉我,这个jar包,在ngrinder的war包里(WEB-INF\lib)有,另外还是各种飘红,经大神提示那是少的grinder的jar包,所以在ngrinder的war包里也都有,把它的这几个包手动添加进去吧!
解决方法:
手动导入它需要的jar包,目前基本的几个jar包下面有写到,目前我用的是ngrinder-controller-3.4.4版本的war包,若版本不一样,以下版本号需要根据实际修改
1、在maven的bin目录下执行以下语句,手动导入相关jar包(在ngrinder的war包里就有这些包),然后在pom.xml文件里写入相关的依赖包信息,再maven reload一下
在这里插入图片描述
mvn命令:

mvn install:install-file  -DgroupId=org.ngrinder  -DartifactId=ngrinder-groovy  -Dversion=3.4.4  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\ngrinder-groovy-3.4.4.jar -DgeneratePom=true -DcreateChecksum=true
mvn install:install-file  -DgroupId=net.sf.grinder  -DartifactId=grinder-core -Dversion=3.9.1  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\grinder-core-3.9.1.jar -DgeneratePom=true -DcreateChecksum=true
mvn install:install-file  -DgroupId=org.ngrinder  -DartifactId=grinder -Dversion=3.9.1-patch  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\grinder-patch-3.9.1-patch.jar -DgeneratePom=true -DcreateChecksum=true
mvn install:install-file  -DgroupId=net.sf.grinder  -DartifactId=grinder-http -Dversion=3.9.1  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\grinder-http-3.9.1.jar -DgeneratePom=true -DcreateChecksum=true
mvn install:install-file  -DgroupId=net.sf.grinder  -DartifactId=grinder-httpclient -Dversion=3.9.1  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\grinder-httpclient-3.9.1.jar -DgeneratePom=true -DcreateChecksum=true
mvn install:install-file  -DgroupId=net.sf.grinder  -DartifactId=grinder-dcr-agent -Dversion=3.9.1  -Dpackaging=jar  -Dfile=E:\Myworkplace\ngrinder-controller-3.4.4\WEB-INF\lib\grinder-dcr-agent-3.9.1.jar -DgeneratePom=true -DcreateChecksum=true

2、pom.xml文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>ngrinder</groupId>
	<artifactId>www.baidu.com</artifactId>
	<version>0.0.1</version>

	<properties>
		<ngrinder.version>3.4.4</ngrinder.version>
		<maven.compiler.source>1.7</maven.compiler.source>
		<maven.compiler.target>1.7</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<repositories>
		<!--

    <repository>
        <id>ngrinder.maven.repo</id>
        <url>https://github.com/naver/ngrinder/raw/ngrinder.maven.repo/releases</url>
    </repository>
    -->
	</repositories>
	<dependencies>
		<dependency>
			<groupId>org.ngrinder</groupId>
			<artifactId>ngrinder-groovy</artifactId>
			<version>${ngrinder.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>net.sf.grinder</groupId>
			<artifactId>grinder-core</artifactId>
			<version>3.9.1</version>
		</dependency>
		<dependency>
			<groupId>org.ngrinder</groupId>
			<artifactId>grinder</artifactId>
			<version>3.9.1-patch</version>
		</dependency>
		<dependency>
			<groupId>net.sf.grinder</groupId>
			<artifactId>grinder-http</artifactId>
			<version>3.9.1</version>
		</dependency>
		<dependency>
			<groupId>net.sf.grinder</groupId>
			<artifactId>grinder-httpclient</artifactId>
			<version>3.9.1</version>

		</dependency>
		<dependency>
			<groupId>net.sf.grinder</groupId>
			<artifactId>grinder-dcr-agent</artifactId>
			<version>3.9.1</version>
		</dependency>
		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
			<version>1.3.168</version>
		</dependency>

		<dependency>
			<groupId>commons-fileupload</groupId>
			<artifactId>commons-fileupload</artifactId>
			<version>1.3.1</version>
		</dependency>

		<dependency>
			<groupId>commons-dbcp</groupId>
			<artifactId>commons-dbcp</artifactId>
			<version>1.4</version>
		</dependency>

		<dependency>
			<groupId>cglib</groupId>
			<artifactId>cglib</artifactId>
			<version>2.2.2</version>
		</dependency>

		<!-- Json conversion -->
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.2</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit-dep</artifactId>
			<version>4.9</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.22</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.22</version>
		</dependency>

		<!-- Commons -->
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.0.1</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.6</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.9</version>
			<scope>compile</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.9</version>
				<configuration>
					<additionalProjectnatures>
						<projectnature>
							org.eclipse.jdt.groovy.core.groovyNature
						</projectnature>
						<projectnature>
							org.eclipse.m2e.core.maven2Nature
						</projectnature>
					</additionalProjectnatures>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值