PageRenderTime 105ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/pom.xml

https://code.google.com/p/gwtrpccommlayer/
XML | 124 lines | 117 code | 4 blank | 3 comment | 0 complexity | e88c05e3d5a3708d7930599036306e81 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. <module>gwtp-extension</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>GRCL Parent</name>
  16. <scm>
  17. <!--ATTENTION: WORK IN PROGRESS. NOT CURRENTLY WORKING-->
  18. <connection>scm:hg:https://gwtrpccommlayer.googlecode.com/hg</connection>
  19. <developerConnection>scm:hg:https://gwtrpccommlayer.googlecode.com/hg </developerConnection>
  20. <url>http://code.google.com/p/gwtrpccommlayer</url>
  21. </scm>
  22. <distributionManagement>
  23. <repository>
  24. <id>server</id>
  25. <!-- <url>http://danbillings.dnsalias.com:8081/artifactory/libs-releases-local</url>-->
  26. <!-- WARNING: SUBJECT TO CHANGE -->
  27. <url>http://danbillings.dnsalias.com:8081/artifactory/libs-snapshots-local</url>
  28. </repository>
  29. </distributionManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.google.code.findbugs</groupId>
  33. <artifactId>jsr305</artifactId>
  34. <version>1.3.9</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>4.7</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mockito</groupId>
  44. <artifactId>mockito-all</artifactId>
  45. <version>1.8.5</version>
  46. <type>jar</type>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.httpcomponents</groupId>
  51. <artifactId>httpclient</artifactId>
  52. <version>4.0.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.guava</groupId>
  56. <artifactId>guava</artifactId>
  57. <version>r07</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpcore</artifactId>
  62. <version>4.0.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.google.gwt</groupId>
  66. <artifactId>gwt-user</artifactId>
  67. <version>2.1.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.google.code.guice</groupId>
  71. <artifactId>guice</artifactId>
  72. <version>3.0-r1291</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <version>2.3.2</version>
  80. <configuration>
  81. <source>1.6</source>
  82. <target>1.6</target>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <artifactId>maven-assembly-plugin</artifactId>
  87. <version>2.2-beta-5</version>
  88. <configuration>
  89. <descriptorRefs>
  90. <descriptorRef>jar-with-dependencies</descriptorRef>
  91. </descriptorRefs>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-scm-plugin</artifactId>
  97. <version>1.0</version>
  98. <configuration>
  99. <connectionType>developerConnection</connectionType>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. <resources>
  104. <resource>
  105. <directory>src/main/java</directory>
  106. <includes>
  107. <include>**/*.java</include>
  108. <include>**/*.gwt.xml</include>
  109. </includes>
  110. </resource>
  111. </resources>
  112. </build>
  113. <repositories>
  114. <repository>
  115. <id>guice-maven</id>
  116. <name>guice maven</name>
  117. <url>http://guice-maven.googlecode.com/svn/trunk</url>
  118. </repository>
  119. </repositories>
  120. </project>