| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.highcharts.export</groupId>
- <artifactId>highcharts-export</artifactId>
- <version>2.1.0</version>
- <packaging>pom</packaging>
- <name>Highcharts Export Project</name>
- <url>http://maven.apache.org</url>
- <organization>
- <name>Highsoft</name>
- <url>http://highcharts.com</url>
- </organization>
- <properties>
- <!-- compile plugin settings -->
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
- <spring.version>3.2.0.RELEASE</spring.version>
- <cglib.version>2.2.2</cglib.version>
- <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
- <beanstalk.versionLabel>export-${maven.build.timestamp}</beanstalk.versionLabel>
- </properties>
- <modules>
- <module>highcharts-export-convert</module>
- <module>highcharts-export-web</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>${spring.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>${cglib.version}</version>
- </dependency>
- </dependencies>
- </project>
|