NetBeans:使用-e开关重新运行Maven/PluginResolutionException

Mus*_*eas 4 selenium maven-2 netbeans exception pom.xml

我对Maven和Netbeans一无所知,我更新了我的netbeans,现在我的测试不再适用了:

Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed    to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5: Could not transfer artifact    org.apache.maven.plugins:maven-resources-plugin:pom:2.5 from/to central (http://repo1.maven.org/maven2): pr-dfs-bank-   00.emea.isn.corpintra.net: Unknown host pr-dfs-bank-00.emea.isn.corpintra.net -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
Run Code Online (Sandbox Code Playgroud)

如何使用netbeans激活-e或-X开关,我看到很多带有"mvn clean"等的例子,但我通过Netbeans安装了Maven,所以我没有在命令行的文件夹上.我没有收到错误消息,想要查看更详细的日志.

我在我的代码中搜索了错误消息中提到的pr-dfs-bank-00.emea.isn.corpintra.net,但它不是我的源代码的一部分.

我的pom.xml,它应该是Maven2和Selenium

<?xml version="1.0" encoding="UTF-8"?>
<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>
    <version>1.0</version>

    <repositories>
        <repository>
          <id>central</id>
          <name>Maven Repository Switchboard</name>
          <layout>default</layout>
          <url>http://repo1.maven.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <name>Maven Plugin Repository</name>
          <url>http://repo1.maven.org/maven2</url>
          <layout>default</layout>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <releases>
            <updatePolicy>never</updatePolicy>
          </releases>
        </pluginRepository>
    </pluginRepositories> 

    <properties>
        <maven.build.timestamp.format>yyMMdd-HHmm</maven.build.timestamp.format>
        <project.build.sourceEncoding>windows-1252</project.build.sourceEncoding>
        <lfadapter>${project.basedir}/../lib/lf_CAdapter-4.0.jar</lfadapter>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.3.1</version>
            <scope>test</scope>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.17.0</version>
        </dependency>

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-ie-driver</artifactId>
            <version>2.17.0</version>
        </dependency>

        <dependency> 
            <groupId>org.apache.poi</groupId> 
            <artifactId>poi-ooxml</artifactId> 
            <version>3.8-beta5</version> 
        </dependency>        

        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <testSourceDirectory>src/</testSourceDirectory>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <failOnError>false</failOnError>
                    <debug>true</debug>
                    <verbose>true</verbose>
                    <showWarnings>true</showWarnings>
                    <showDeprecation>true</showDeprecation>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <showDeprecation>true</showDeprecation>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12</version>
                <configuration>
                    <disableXmlReport>false</disableXmlReport>
                    <forkMode>always</forkMode>
                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
                    <failIfNoTests>false</failIfNoTests>
                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
                    <workingDirectory>reports/${maven.build.timestamp}/</workingDirectory>
                    <reportsDirectory>reports/surefire/</reportsDirectory>
                    <reporting>
                        <plugins>
                            <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-report-plugin</artifactId>
                                <version>2.12</version>
                            </plugin>
                        </plugins>
                    </reporting>
                    <properties>
                        <property>
                            <name>showSuccess</name>
                            <value>true</value>
                        </property>
                    </properties>
                    <suiteXmlFiles>
                        <suiteXmlFile>testng-suite.xml</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>netbeans-private-testng</id>
            <activation>
                <activeByDefault>true</activeByDefault>
                <property>
                    <name>netbeans.testng.action</name>
                </property>
            </activation>
        </profile>
    </profiles>
</project>
Run Code Online (Sandbox Code Playgroud)

我认为我的pom.xml并不是它应该的方式:(

任何帮助表示赞赏:)

小智 14

NetBeans 6.9.1 - Mac OS X.

要通过Netbeans激活所需的开关,请转到首选项 - >其他 - > Maven,然后在全局执行选项下输入以下内容:

--debug --errors
Run Code Online (Sandbox Code Playgroud)

NetBeans - Windows

在NetBeans中添加调试和错误(从7.3版开始),如下所示:

  1. 单击工具.
  2. 单击选项.
  3. 单击Java图标.
  4. 单击Maven选项卡.
  5. 附加到全局执行选项:--debug --errors
  6. 单击确定.

Maven将执行包含调试和错误信息的应用程序.

  • 如果我想为特定项目设置开关怎么办?我运气不好? (2认同)

mkl*_*int 5

很可能你在maven的settings.xml文件中定义了一个镜像或代理(例如在〜/ .m2/settings.xml中)并且定义错了?喜欢指向错误的服务器?


PSA*_*PSA 5

在Netbeans 8.0.2中,您可以在项目的properties-> Actions上定义它,然后选择要在其中指定要传递参数的动作。 在此处输入图片说明