PageRenderTime 31ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/pom.xml~

https://code.google.com/p/gwtrpccommlayer/
Unknown | 99 lines | 95 code | 4 blank | 0 comment | 0 complexity | 92cdf3b59357c61017c306cc39343991 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.gwtrpccommlayer</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <modules>
  10. <module>example</module>
  11. <module>gwtrpccommlayer</module>
  12. </modules>
  13. <packaging>pom</packaging>
  14. <name>GRCL Parent</name>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.7</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mockito</groupId>
  24. <artifactId>mockito-all</artifactId>
  25. <version>1.8.5</version>
  26. <type>jar</type>
  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>com.google.gwt</groupId>
  41. <artifactId>gwt-user</artifactId>
  42. <version>2.0.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.inject</groupId>
  46. <artifactId>guice</artifactId>
  47. <version>3.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.inject.extensions</groupId>
  51. <artifactId>guice-servlet</artifactId>
  52. <version>2.0</version>
  53. </dependency>
  54. <!-- <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpcomponents-core</artifactId>
  57. <version>4.0.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpcomponents-client</artifactId>
  62. <version>4.0.1</version>
  63. </dependency>-->
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>2.3.2</version>
  70. <configuration>
  71. <source>1.6</source>
  72. <target>1.6</target>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-assembly-plugin</artifactId>
  77. <version>2.2-beta-5</version>
  78. <configuration>
  79. <descriptorRefs>
  80. <descriptorRef>jar-with-dependencies</descriptorRef>
  81. </descriptorRefs>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. <resources>
  86. <resource>
  87. <directory>src/main/java</directory>
  88. <includes>
  89. <include>**/*.java</include>
  90. <include>**/*.gwt.xml</include>
  91. </includes>
  92. </resource>
  93. </resources>
  94. </build>
  95. </project>