RE: jdbc连接数据库,record无测试结果返回

Posted by lianyadong on
URL: http://ngrinder.373.s1.nabble.com/jdbc-record-tp871p2228.html

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>Test1</artifactId>
        <version>0.0.1</version>

        <properties>
                <ngrinder.version>3.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>mysql</groupId>
                    <artifactId>mysql-connector-java</artifactId>
                    <version>5.1.6</version>
                </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>