Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. [INFO]
  2. [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ webproj ---
  3. [INFO] No sources to compile
  4. [INFO]
  5.  
  6. <plugin>
  7. <groupId>org.apache.maven.plugins</groupId>
  8. <artifactId>maven-war-plugin</artifactId>
  9. <version>2.4</version>
  10. <executions>
  11. <execution>
  12. <phase>compile</phase>
  13. <goals>
  14. <goal>exploded</goal>
  15. </goals>
  16. </execution>
  17. </executions>
  18. <configuration>
  19. <webXml>WebContentWEB-INFweb.xml</webXml>
  20. <webappDirectory>WebContent</webappDirectory>
  21. <source>${project.basedir}src</source>
  22. <target>${maven.compiler.target}</target>
  23. <encoding>utf-8</encoding>
  24. </configuration>
  25. </plugin>
  26.  
  27. <build>
  28.  
  29. <sourceDirectory>/Java Resources/src</sourceDirectory>
  30. <plugins>
  31. ...
  32. <plugin>
  33. <groupId>org.codehaus.mojo</groupId>
  34. <artifactId>build-helper-maven-plugin</artifactId>
  35. <version>${version.build-helper-maven-plugin}</version>
  36. <executions>
  37. <execution>
  38. <phase>generate-sources</phase>
  39. <goals>
  40. <goal>add-source</goal>
  41. </goals>
  42. <configuration>
  43. <sources>
  44. <source>social/src/main/java</source>
  45. </sources>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. ...
  50. </plugins>
  51. <build>
  52.  
  53. <project>
  54. ...
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <artifactId>maven-war-plugin</artifactId>
  59. <version>2.3</version>
  60. <configuration>
  61. <warSourceDirectory>old/project/source</warSourceDirectory>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. ...
  67. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement