-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpom.xml
96 lines (96 loc) · 3.42 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-ce-jar-parent-pom</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
</parent>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-chartbeans</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<name>pentaho-chartbeans-charting-engine</name>
<description>The Pentaho Chart Bean charting API. An engine agnostic charting API.</description>
<url>http://www.pentaho.com</url>
<scm>
<connection>scm:git:git@github.com:pentaho/pentaho-chartbeans.git</connection>
<developerConnection>scm:git:git@github.com:pentaho/pentaho-chartbeans.git</developerConnection>
<url>scm:git:git@github.com:pentaho/pentaho-chartbeans.git</url>
</scm>
<properties>
<dependency.jfreechart.revision>1.0.13</dependency.jfreechart.revision>
<dependency.commons-collections.revision>3.2.2</dependency.commons-collections.revision>
<pentaho-ofc4j.version>1.1.0</pentaho-ofc4j.version>
<pentaho-metadata.version>10.3.0.0-SNAPSHOT</pentaho-metadata.version>
<pentaho-reporting.version>10.3.0.0-SNAPSHOT</pentaho-reporting.version>
</properties>
<dependencies>
<!-- internal dependencies -->
<dependency>
<groupId>org.pentaho.reporting.library</groupId>
<artifactId>libcss</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.pentaho.reporting.library</groupId>
<artifactId>libbase</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.pentaho.reporting.library</groupId>
<artifactId>libxml</artifactId>
<version>${pentaho-reporting.version}</version>
</dependency>
<dependency>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-metadata</artifactId>
<version>${pentaho-metadata.version}</version>
<exclusions>
<exclusion>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- external dependencies -->
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>${dependency.jfreechart.revision}</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${dependency.commons-collections.revision}</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
</dependency>
<dependency>
<groupId>ofc4j</groupId>
<artifactId>pentaho-ofc4j</artifactId>
<version>${pentaho-ofc4j.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>${jettison.version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build />
</project>