Guest User

Untitled

a guest
Jan 22nd, 2014
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. The following is an example Maven pom file which allows the user to
  4. to build JForex-SDK by using the latest version of dependencies
  5. from dukascopy public repository with command: mvn clean install
  6. -->
  7. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.dukascopy.dds2</groupId>
  11. <artifactId>eTraderApiDukascopy</artifactId>
  12. <version>2.24</version>
  13. <organization>
  14. <name>Dukascopy Bank SA</name>
  15. <url>http://www.dukascopy.com</url>
  16. </organization>
  17. <repositories>
  18. <repository>
  19. <id>dc_public</id>
  20. <name>Dukascopy public repository</name>
  21. <url>http://www.dukascopy.com/client/jforexlib/publicrepo/</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.dukascopy.converter</groupId>
  27. <artifactId>MQL4Converter</artifactId>
  28. <version>2.34</version>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>com.dukascopy.api</groupId>
  32. <artifactId>JForex-API</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.dukascopy.dds2</groupId>
  38. <artifactId>DDS2-jClient-JForex</artifactId>
  39. <!-- find the latest available version here:
  40. http://publicrepo.site.dukascopy.com/jforexlib/publicrepo/com/dukascopy/dds2/DDS2-jClient-JForex/
  41. -->
  42. <version>2.31</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-jdk14</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <!-- find the latest available version here:
  51. http://publicrepo.site.dukascopy.com/jforexlib/publicrepo/com/dukascopy/api/JForex-API/
  52. -->
  53. <dependency>
  54. <groupId>com.dukascopy.api</groupId>
  55. <artifactId>JForex-API</artifactId>
  56. <version>2.9.6.1</version>
  57. <classifier>sources</classifier>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>slf4j-log4j12</artifactId>
  62. <version>1.6.4</version>
  63. <optional>true</optional>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <sourceDirectory>src</sourceDirectory>
  68. <resources>
  69. <resource>
  70. <directory>rc</directory>
  71. </resource>
  72. </resources>
  73. <plugins>
  74. <plugin>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.0</version>
  77. <inherited>true</inherited>
  78. <configuration>
  79. <source>1.6</source>
  80. <target>1.6</target>
  81. <fork>true</fork>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>
Advertisement
Add Comment
Please, Sign In to add comment