Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <build>
  2. <sourceDirectory>src/</sourceDirectory>
  3. <plugins>
  4. <plugin>
  5. <artifactId>maven-compiler-plugin</artifactId>
  6. <version>3.2</version>
  7. <configuration>
  8. <source>${jdk.version}</source>
  9. <target>${jdk.version}</target>
  10. </configuration>
  11. </plugin>
  12. <plugin>
  13. <artifactId>maven-clean-plugin</artifactId>
  14. <version>3.0.0</version>
  15. <configuration>
  16. <filesets>
  17. <fileset>
  18. <directory>${settings.localRepository}/</directory>
  19. <includes>
  20. <include>**/*</include>
  21. </includes>
  22. </fileset>
  23. </filesets>
  24. </configuration>
  25. <executions>
  26. <execution>
  27. <id>auto-clean</id>
  28. <phase>install</phase>
  29. <goals>
  30. <goal>clean</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. </plugins>
  36. </build>
  37.  
  38. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.3:resources (default-resources) on project com.google.protobuf: Execution default-resources of goal org.apache.maven.plugins:maven-resources-plugin:2.3:resources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.3 or one of its dependencies could not be resolved: Could not find artifact org.apache.maven.plugins:maven-resources-plugin:jar:2.3 -> [Help 1]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement