Guest User

Untitled

a guest
Jan 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. mvn clean install
  2.  
  3. mvn package
  4.  
  5. mvn clean install
  6. [INFO] Scanning for projects...
  7. [INFO] ------------------------------------------------------------------------
  8. [INFO] BUILD FAILURE
  9. [INFO] ------------------------------------------------------------------------
  10. [INFO] Total time: 0.475 s
  11. [INFO] Finished at: 2019-01-18T14:44:12-02:00
  12. [INFO] ------------------------------------------------------------------------
  13. [ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:UsersFAMILIA_SILVADocumentsVSCODEGame). Please verify you invoked Maven from the correct directory. -> [Help 1]
  14. [ERROR]
  15. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  16. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  17. [ERROR]
  18. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  19. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException
  20. PS C:UsersFAMILIA_SILVADocumentsVSCODEGame>
  21.  
  22. <?xml version="1.0" encoding="UTF-8"?>
  23.  
  24. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  25. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  26. <modelVersion>4.0.0</modelVersion>
  27.  
  28. <groupId>me.craftparky.com</groupId>
  29. <artifactId>Plugins</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31.  
  32. <name>Plugins</name>
  33. <!-- FIXME change it to the project's website -->
  34. <url>http://www.example.com</url>
  35.  
  36. <properties>
  37. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  38. <maven.compiler.source>1.8</maven.compiler.source>
  39. <maven.compiler.target>1.8</maven.compiler.target>
  40. </properties>
  41.  
  42. <dependencies>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.11</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.parky</groupId>
  51. <artifactId>biblioteca</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. </dependencies>
  55.  
  56. <build>
  57. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  58. <plugins>
  59. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  60. <plugin>
  61. <artifactId>maven-clean-plugin</artifactId>
  62. <version>3.1.0</version>
  63. </plugin>
  64. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  65. <plugin>
  66. <artifactId>maven-resources-plugin</artifactId>
  67. <version>3.0.2</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>3.8.0</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-surefire-plugin</artifactId>
  75. <version>2.22.1</version>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-jar-plugin</artifactId>
  79. <version>3.0.2</version>
  80. </plugin>
  81. <plugin>
  82. <artifactId>maven-install-plugin</artifactId>
  83. <version>2.5.2</version>
  84. </plugin>
  85. <plugin>
  86. <artifactId>maven-deploy-plugin</artifactId>
  87. <version>2.8.2</version>
  88. </plugin>
  89. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  90. <plugin>
  91. <artifactId>maven-site-plugin</artifactId>
  92. <version>3.7.1</version>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-project-info-reports-plugin</artifactId>
  96. <version>3.0.0</version>
  97. </plugin>
  98. </plugins>
  99. </pluginManagement>
  100. </build>
  101. </project>
Add Comment
Please, Sign In to add comment