Guest User

Untitled

a guest
Dec 15th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. [INFO] BUILD FAILURE
  2. [INFO] ------------------------------------------------------------------------
  3. [INFO] Total time: 0.205 s
  4. [INFO] Finished at: 2017-12-15T13:52:00-02:00
  5. [INFO] Final Memory: 8M/155M
  6. [INFO] ------------------------------------------------------------------------
  7. [ERROR] Could not find goal 'pmd:check' in plugin org.apache.maven.plugins:maven
  8. -pmd-plugin:2.7.1 among available goals check, pmd, cpd, help, cpd-check -> [Hel
  9. p 1]
  10. [ERROR]
  11. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
  12. ch.
  13. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  14. [ERROR]
  15. [ERROR] For more information about the errors and possible solutions, please rea
  16. d the following articles:
  17. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoNotFoundEx
  18. ception
  19.  
  20. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <groupId>Selenium</groupId>
  24. <artifactId>Selenium</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>org.seleniumhq.selenium</groupId>
  36. <artifactId>selenium-java</artifactId>
  37. <version>3.8.1</version>
  38. </dependency>
  39.  
  40. <dependency>
  41. <groupId>org.seleniumhq.selenium</groupId>
  42. <artifactId>selenium-server</artifactId>
  43. <version>3.8.1</version>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>net.sourceforge.pmd</groupId>
  48. <artifactId>pmd</artifactId>
  49. <version>5.8.1</version>
  50. <type>pom</type>
  51. </dependency>
  52.  
  53. </dependencies>
  54.  
  55. <build>
  56. <sourceDirectory>src</sourceDirectory>
  57. <plugins>
  58. <plugin>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.7.0</version>
  61. <configuration>
  62. <source>1.8</source>
  63. <target>1.8</target>
  64. </configuration>
  65. </plugin>
  66.  
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-pmd-plugin</artifactId>
  70. <version>2.7.1</version>
  71. <configuration>
  72. <verbose>true</verbose>
  73. <sourceEncoding>utf-8</sourceEncoding>
  74. <skipEmptyReport>false</skipEmptyReport>
  75. <includeTests>true</includeTests>
  76. <aggregate>true</aggregate>
  77. <minimumTokens>100</minimumTokens>
  78. <linkXRef>false</linkXRef>
  79. <targetJdk>1.6</targetJdk>
  80. <rulesets>
  81. <ruleset>/rulesets/basic.xml</ruleset>
  82. </rulesets>
  83. <failOnViolation>true</failOnViolation>
  84. </configuration>
  85. <executions>
  86. <execution>
  87. <phase>test</phase>
  88. <goals>
  89. <goal>pmd</goal>
  90. <goal>check</goal>
  91. <goal>cpd</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. <reporting>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-pmd-plugin</artifactId>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-jxr-plugin</artifactId>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-javadoc-plugin</artifactId>
  111. </plugin>
  112. </plugins>
  113. </reporting>
Add Comment
Please, Sign In to add comment