| 875 |
lars |
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>4.1.2.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 |
|
|
|
34 |
<repository>
|
|
|
35 |
<id>com.springsource.repository.bundles.external</id>
|
|
|
36 |
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
|
|
|
37 |
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
|
38 |
</repository>
|
|
|
39 |
</repositories>
|
|
|
40 |
<dependencies>
|
|
|
41 |
<dependency>
|
|
|
42 |
<groupId>junit</groupId>
|
|
|
43 |
<artifactId>junit</artifactId>
|
|
|
44 |
<version>4.8.1</version>
|
|
|
45 |
<scope>test</scope>
|
|
|
46 |
</dependency>
|
|
|
47 |
<dependency>
|
|
|
48 |
<groupId>commons-io</groupId>
|
|
|
49 |
<artifactId>commons-io</artifactId>
|
|
|
50 |
<version>2.4</version>
|
|
|
51 |
</dependency>
|
|
|
52 |
<dependency>
|
|
|
53 |
<groupId>org.springframework</groupId>
|
|
|
54 |
<artifactId>spring-core</artifactId>
|
|
|
55 |
<version>${spring.version}</version>
|
|
|
56 |
<type>jar</type>
|
|
|
57 |
<scope>compile</scope>
|
|
|
58 |
</dependency>
|
|
|
59 |
<dependency>
|
|
|
60 |
<groupId>org.springframework</groupId>
|
|
|
61 |
<artifactId>spring-context</artifactId>
|
|
|
62 |
<version>${spring.version}</version>
|
|
|
63 |
</dependency>
|
|
|
64 |
<dependency>
|
|
|
65 |
<groupId>log4j</groupId>
|
|
|
66 |
<artifactId>log4j</artifactId>
|
|
|
67 |
<version>1.2.17</version>
|
|
|
68 |
<type>jar</type>
|
|
|
69 |
<scope>compile</scope>
|
|
|
70 |
</dependency>
|
|
|
71 |
</dependencies>
|
|
|
72 |
</project>
|