市长热线演示版

pom.xml 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>3.2.0.RELEASE</spring.version>
  20. <cglib.version>2.2.2</cglib.version>
  21. <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
  22. <beanstalk.versionLabel>export-${maven.build.timestamp}</beanstalk.versionLabel>
  23. </properties>
  24. <modules>
  25. <module>highcharts-export-convert</module>
  26. <module>highcharts-export-web</module>
  27. </modules>
  28. <dependencies>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.8.1</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-io</groupId>
  37. <artifactId>commons-io</artifactId>
  38. <version>1.3.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-core</artifactId>
  43. <version>${spring.version}</version>
  44. <type>jar</type>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-context</artifactId>
  50. <version>${spring.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>log4j</groupId>
  54. <artifactId>log4j</artifactId>
  55. <version>1.2.14</version>
  56. <type>jar</type>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>cglib</groupId>
  61. <artifactId>cglib</artifactId>
  62. <version>${cglib.version}</version>
  63. </dependency>
  64. </dependencies>
  65. </project>