Guest User

Untitled

a guest
Sep 2nd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. [ERROR] The project [unknown-group-id]:[unknown-artifact-id]:[unknown-version] (D:projectssandboxpom.xml) has 4 errors
  2. [ERROR] Malformed POM D:projectssandboxpom.xml: Unrecognised tag: 'plugin' (position: START_TAG seen ...http://maven.apache.org/xsd/maven-4.0.0.xsd"> r
  3. n <build>rn<plugin>... @3:9) @ D:projectssandboxpom.xml, line 3, column 9 -> [Help 2]
  4. [ERROR] 'groupId' is missing. @ line 1, column 204
  5. [ERROR] 'artifactId' is missing. @ line 1, column 204
  6. [ERROR] 'version' is missing. @ line 1, column 204
  7. [ERROR]
  8.  
  9. <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">
  10. <build>
  11. <plugin>
  12. <inherited>false</inherited>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-antrun-plugin</artifactId>
  15. <version>1.6</version>
  16. <executions>
  17. <execution>
  18. <id>test</id>
  19. <phase>install</phase>
  20. <goals>
  21. <goal>run</goal>
  22. </goals>
  23. <configuration>
  24. <target name="test">
  25. <scp trust="true" failonerror="true" verbose="off" sftp="true"
  26. file=""
  27. todir="" />
  28. <sshexec trust="true" failonerror="true"
  29. host="test.server"
  30. username="testuser"
  31. password="test"
  32. command=""
  33. timeout="1000" />
  34. <taskdef name="scp" classname="org.apache.tools.ant.taskdefs.optional.ssh.Scp">
  35. <classpath refid="maven.plugin.classpath" />
  36. </taskdef>
  37. </target>
  38. </configuration>
  39. </execution>
  40. </executions>
  41. <dependencies>
  42. <dependency>
  43. <groupId>ant</groupId>
  44. <artifactId>ant-commons-net</artifactId>
  45. <version>1.6.5</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.ant</groupId>
  49. <artifactId>ant-jsch</artifactId>
  50. <version>1.9.1</version>
  51. </dependency>
  52. </dependencies>
  53. </plugin>
  54. </build>
  55. </project>
Add Comment
Please, Sign In to add comment