Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.gmail.goodwin062</groupId>
  4. <artifactId>MoneyMobs</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <plugins>
  8. <plugin>
  9. <groupId>org.apache.maven.plugins</groupId>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <configuration>
  12. <source>1.7</source>
  13. <target>1.7</target>
  14. </configuration>
  15. </plugin>
  16. </plugins>
  17. </build>
  18. <repositories>
  19. <repository>
  20. <id>bukkit-repo</id>
  21. <url>http://repo.bukkit.org/content/groups/public/</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.bukkit</groupId>
  27. <artifactId>bukkit</artifactId>
  28. <version>1.7.9-R0.2</version>
  29. <type>jar</type>
  30. <scope>provided</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>
  34.  
  35.  
  36.  
  37. ------------------------------------------------------------------------------
  38.  
  39. SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
  40. SLF4J: Defaulting to no-operation (NOP) logger implementation
  41. SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
  42. [INFO] Scanning for projects...
  43. [ERROR] The build could not read 1 project -> [Help 1]
  44. [ERROR]
  45. [ERROR] The project com.gmail.goodwin062:MoneyMobs:0.0.1-SNAPSHOT (C:\Users\jon\Desktop\forge\mcp\eclipse\MoneyMobs\pom.xml) has 1 error
  46. [ERROR] Malformed POM C:\Users\jon\Desktop\forge\mcp\eclipse\MoneyMobs\pom.xml: expected START_TAG or END_TAG not TEXT (position: TEXT seen ...</artifactId>"src/main/resources/plugin.yml"\r\n <v... @5:5) @ C:\Users\jon\Desktop\forge\mcp\eclipse\MoneyMobs\pom.xml, line 5, column 5 -> [Help 2]
  47. [ERROR]
  48. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  49. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  50. [ERROR]
  51. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  52. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
  53. [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement