PageRenderTime 34ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/gwtrpccommlayer/pom.xml

https://code.google.com/p/gwtrpccommlayer/
XML | 112 lines | 104 code | 8 blank | 0 comment | 0 complexity | 68892d2926dc49a9585bf2de490532e4 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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.googlecode</groupId>
  7. <artifactId>gwtrpccommlayer</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>Gwt RPC Communication Layer</name>
  11. <parent>
  12. <groupId>com.googlecode.gwtrpccommlayer</groupId>
  13. <artifactId>parent</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.eclipse.jetty</groupId>
  19. <artifactId>jetty-servlet</artifactId>
  20. <version>8.0.0.M1</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.eclipse.jetty</groupId>
  25. <artifactId>jetty-server</artifactId>
  26. <version>8.0.0.M1</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.httpcomponents</groupId>
  31. <artifactId>httpclient</artifactId>
  32. <version>4.0.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.httpcomponents</groupId>
  36. <artifactId>httpcore</artifactId>
  37. <version>4.0.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>aopalliance</groupId>
  41. <artifactId>aopalliance</artifactId>
  42. <version>1.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.gwt</groupId>
  46. <artifactId>gwt-user</artifactId>
  47. <version>2.0.3</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.inject.extensions</groupId>
  51. <artifactId>guice-assisted-inject</artifactId>
  52. <version>2.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.inject.extensions</groupId>
  56. <artifactId>guice-servlet</artifactId>
  57. <version>2.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax.inject</groupId>
  61. <artifactId>javax.inject</artifactId>
  62. <version>1</version>
  63. </dependency>
  64. </dependencies>
  65. <reporting>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-project-info-reports-plugin</artifactId>
  70. <version>2.0.1</version>
  71. </plugin>
  72. </plugins>
  73. </reporting>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>2.3.2</version>
  79. <configuration>
  80. <source>1.6</source>
  81. <target>1.6</target>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-assembly-plugin</artifactId>
  86. <version>2.2-beta-5</version>
  87. <configuration>
  88. <descriptorRefs>
  89. <descriptorRef>jar-with-dependencies</descriptorRef>
  90. </descriptorRefs>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. <resources>
  95. <resource>
  96. <directory>src/main/java</directory>
  97. <includes>
  98. <include>**/*.java</include>
  99. <include>**/*.gwt.xml</include>
  100. </includes>
  101. </resource>
  102. </resources>
  103. </build>
  104. </project>