You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.4 KiB

8 years ago
8 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.highcharts.export</groupId>
  5. <artifactId>highcharts-export</artifactId>
  6. <version>2.1.0</version>
  7. <packaging>pom</packaging>
  8. <name>Highcharts Export Project</name>
  9. <url>http://maven.apache.org</url>
  10. <organization>
  11. <name>Highsoft</name>
  12. <url>http://highcharts.com</url>
  13. </organization>
  14. <properties>
  15. <!-- compile plugin settings -->
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.7</maven.compiler.source>
  18. <maven.compiler.target>1.7</maven.compiler.target>
  19. <spring.version>5.2.3.RELEASE</spring.version>
  20. <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
  21. <beanstalk.versionLabel>export-${maven.build.timestamp}</beanstalk.versionLabel>
  22. </properties>
  23. <modules>
  24. <module>highcharts-export-convert</module>
  25. <module>highcharts-export-web</module>
  26. </modules>
  27. <repositories>
  28. <repository>
  29. <id>com.springsource.repository.bundles.release</id>
  30. <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
  31. <url>http://repository.springsource.com/maven/bundles/release</url>
  32. </repository>
  33. <repository>
  34. <id>com.springsource.repository.bundles.external</id>
  35. <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
  36. <url>http://repository.springsource.com/maven/bundles/external</url>
  37. </repository>
  38. </repositories>
  39. <dependencies>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.8.1</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-io</groupId>
  48. <artifactId>commons-io</artifactId>
  49. <version>2.4</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-core</artifactId>
  54. <version>${spring.version}</version>
  55. <type>jar</type>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-context</artifactId>
  61. <version>${spring.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>log4j</groupId>
  65. <artifactId>log4j</artifactId>
  66. <version>1.2.17</version>
  67. <type>jar</type>
  68. <scope>compile</scope>
  69. </dependency>
  70. </dependencies>
  71. </project>