PageRenderTime 50ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/example/pom.xml

https://code.google.com/p/gwtrpccommlayer/
XML | 64 lines | 58 code | 3 blank | 3 comment | 0 complexity | ddc5561e1aa4bdad1df43130eeb264be MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>parent</artifactId>
  7. <groupId>com.googlecode.gwtrpccommlayer</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.googlecode.gwtrpccommlayer</groupId>
  12. <artifactId>example</artifactId>
  13. <name>GRCL Example</name>
  14. <packaging>war</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.googlecode</groupId>
  18. <artifactId>gwtrpccommlayer</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <!-- <outputDirectory>
  24. ${project.build.directory}/${project.build.finalName}
  25. </outputDirectory>-->
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-war-plugin</artifactId>
  30. <version>2.1-beta-1</version>
  31. <configuration>
  32. <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
  33. </configuration>
  34. </plugin><plugin>
  35. <groupId>org.codehaus.mojo</groupId>
  36. <artifactId>gwt-maven-plugin</artifactId>
  37. <version>2.1.0</version>
  38. <executions>
  39. <execution>
  40. <goals>
  41. </goals>
  42. </execution>
  43. </executions>
  44. <configuration>
  45. <buildOutputDirectory>${project.build.directory}/${project.build.finalName}</buildOutputDirectory>
  46. <hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
  47. <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
  48. <runTarget>Example.html</runTarget>
  49. </configuration>
  50. </plugin><plugin>
  51. <artifactId>maven-assembly-plugin</artifactId>
  52. <version>2.2-beta-5</version>
  53. <configuration>
  54. <descriptorRefs>
  55. <descriptorRef>jar-with-dependencies</descriptorRef>
  56. </descriptorRefs>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>