Statistics
| Revision:

gvsig-projects-pool / org.gvsig.report / trunk / org.gvsig.report / org.gvsig.report.app / org.gvsig.report.app.mainplugin / pom.xml @ 4172

History | View | Annotate | Download (10.3 KB)

1
<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">
2
    <modelVersion>4.0.0</modelVersion>
3
    <parent>
4
        <groupId>org.gvsig</groupId>
5
        <artifactId>org.gvsig.report.app</artifactId>
6
        <version>1.0.74</version>
7
    </parent>
8
    <artifactId>org.gvsig.report.app.mainplugin</artifactId>
9
    <name>${project.artifactId}</name>
10
    <dependencies>
11
        <dependency>
12
            <groupId>org.gvsig</groupId>
13
            <artifactId>org.gvsig.andami</artifactId>
14
            <scope>compile</scope>
15
        </dependency>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.app.mainplugin</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.report.lib.api</artifactId>
24
            <scope>compile</scope>
25
        </dependency>
26
        <dependency>
27
            <groupId>org.gvsig</groupId>
28
            <artifactId>org.gvsig.report.lib.impl</artifactId>
29
            <scope>runtime</scope>
30
        </dependency>
31
        <dependency>
32
            <groupId>org.gvsig</groupId>
33
            <artifactId>org.gvsig.report.swing.api</artifactId>
34
            <scope>compile</scope>
35
        </dependency>
36
        <dependency>
37
            <groupId>org.gvsig</groupId>
38
            <artifactId>org.gvsig.report.swing.impl</artifactId>
39
            <scope>runtime</scope>
40
        </dependency>
41
        <dependency>
42
            <groupId>org.apache.httpcomponents</groupId>
43
            <artifactId>httpcore-nio</artifactId>
44
            <scope>runtime</scope>
45
        </dependency>    
46
        <dependency>
47
            <groupId>org.apache.httpcomponents</groupId>
48
            <artifactId>httpcore</artifactId>
49
            <scope>runtime</scope>
50
        </dependency>    
51
        <dependency>
52
            <groupId>org.springframework</groupId>
53
            <artifactId>spring-context</artifactId>
54
            <scope>runtime</scope>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.springframework</groupId>
58
            <artifactId>spring-aop</artifactId>
59
            <scope>runtime</scope>
60
        </dependency>
61
        <!--        <dependency>
62
            <groupId>aopalliance</groupId>
63
            <artifactId>aopalliance</artifactId>
64
            <scope>runtime</scope>
65
        </dependency>-->
66
        <dependency>
67
            <groupId>org.springframework</groupId>
68
            <artifactId>spring-beans</artifactId>
69
            <scope>runtime</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.springframework</groupId>
73
            <artifactId>spring-core</artifactId>
74
            <scope>runtime</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.springframework</groupId>
78
            <artifactId>spring-expression</artifactId>
79
            <scope>runtime</scope>
80
        </dependency>
81
        <dependency>
82
            <groupId>org.springframework</groupId>
83
            <artifactId>spring-asm</artifactId>
84
            <scope>runtime</scope>
85
        </dependency>
86
        <dependency>
87
            <groupId>ar.com.fdvs</groupId>
88
            <artifactId>DynamicJasper</artifactId>
89
            <scope>runtime</scope>
90
        </dependency>
91
        <dependency>
92
            <groupId>ar.com.fdvs</groupId>
93
            <artifactId>DynamicJasper-core-fonts</artifactId>
94
            <scope>runtime</scope>
95
        </dependency>
96

    
97
        <dependency>
98
            <groupId>net.sf.jasperreports</groupId>
99
            <artifactId>jasperreports</artifactId>
100
            <scope>runtime</scope>
101
        </dependency>
102
        <dependency>
103
            <groupId>net.sf.jasperreports</groupId>
104
            <artifactId>jasperreports-metadata</artifactId>
105
            <scope>runtime</scope>
106
        </dependency>
107
        <dependency>
108
            <groupId>net.sf.jasperreports</groupId>
109
            <artifactId>jasperreports-fonts</artifactId>
110
            <scope>runtime</scope>
111
        </dependency>
112
        <dependency>
113
            <groupId>com.mpobjects.jasperreports.font</groupId>
114
            <artifactId>jasperreports-fonts-liberation</artifactId>
115
            <scope>runtime</scope>
116
        </dependency>
117
        <dependency>
118
            <groupId>net.sf.jasperreports</groupId>
119
            <artifactId>jasperreports-functions</artifactId>
120
            <scope>runtime</scope>
121
        </dependency>            
122
        <dependency>
123
            <groupId>net.sf.jasperreports</groupId>
124
            <artifactId>jasperreports-custom-visualization</artifactId>
125
            <scope>runtime</scope>
126
        </dependency>            
127
        <dependency>
128
            <groupId>net.sf.jasperreports</groupId>
129
            <artifactId>jasperreports-chart-themes</artifactId>
130
            <scope>runtime</scope>
131
        </dependency>      
132
        <dependency>
133
            <groupId>net.sf.jasperreports</groupId>
134
            <artifactId>jasperreports-chart-customizers</artifactId>
135
            <scope>runtime</scope>
136
        </dependency>            
137
        <dependency>
138
            <groupId>net.sf.jasperreports</groupId>
139
            <artifactId>jasperreports-annotation-processors</artifactId>
140
            <scope>runtime</scope>
141
        </dependency>            
142
        
143
        <dependency>
144
            <groupId>commons-beanutils</groupId>
145
            <artifactId>commons-beanutils</artifactId>
146
            <scope>runtime</scope>
147
        </dependency>
148
        <dependency>
149
            <groupId>commons-digester</groupId>
150
            <artifactId>commons-digester</artifactId>
151
            <scope>runtime</scope>
152
        </dependency>
153
        <dependency>
154
            <groupId>commons-logging</groupId>
155
            <artifactId>commons-logging</artifactId>
156
            <scope>runtime</scope>
157
        </dependency>
158
        <dependency>
159
            <groupId>com.lowagie</groupId>
160
            <artifactId>itext</artifactId>
161
            <scope>runtime</scope>
162
        </dependency>
163
        <!--
164
        <dependency>
165
            <groupId>bouncycastle</groupId>
166
            <artifactId>bcmail-jdk14</artifactId>
167
            <scope>runtime</scope>
168
        </dependency>
169
        <dependency>
170
            <groupId>bouncycastle</groupId>
171
            <artifactId>bcprov-jdk14</artifactId>
172
            <scope>runtime</scope>
173
        </dependency>
174
        <dependency>
175
            <groupId>org.bouncycastle</groupId>
176
            <artifactId>bctsp-jdk14</artifactId>
177
            <scope>runtime</scope>
178
        </dependency>
179
        <dependency>
180
            <groupId>org.bouncycastle</groupId>
181
            <artifactId>bcprov-jdk14</artifactId>
182
            <scope>runtime</scope>
183
        </dependency>
184
        <dependency>
185
            <groupId>org.bouncycastle</groupId>
186
            <artifactId>bcmail-jdk14</artifactId>
187
            <scope>runtime</scope>
188
        </dependency>
189
        <dependency>
190
            <groupId>stax</groupId>
191
            <artifactId>stax-api</artifactId>
192
            <scope>runtime</scope>
193
        </dependency>
194
        -->
195
        <dependency>
196
            <groupId>org.jfree</groupId>
197
            <artifactId>jcommon</artifactId>
198
            <scope>runtime</scope>
199
        </dependency>
200
        <dependency>
201
            <groupId>org.jfree</groupId>
202
            <artifactId>jfreechart</artifactId>
203
            <scope>runtime</scope>
204
        </dependency>
205
        <dependency>
206
            <groupId>org.eclipse.jdt.core.compiler</groupId>
207
            <artifactId>ecj</artifactId>
208
            <scope>runtime</scope>
209
        </dependency>
210
        <dependency>
211
            <groupId>org.codehaus.castor</groupId>
212
            <artifactId>castor-xml</artifactId>
213
            <scope>runtime</scope>
214
        </dependency>
215
        <dependency>
216
            <groupId>org.codehaus.castor</groupId>
217
            <artifactId>castor-core</artifactId>
218
            <scope>runtime</scope>
219
        </dependency>
220
        <dependency>
221
            <groupId>commons-lang</groupId>
222
            <artifactId>commons-lang</artifactId>
223
            <scope>runtime</scope>
224
        </dependency>
225
        <dependency>
226
            <groupId>javax.inject</groupId>
227
            <artifactId>javax.inject</artifactId>
228
            <scope>runtime</scope>
229
        </dependency>
230
        <dependency>
231
            <groupId>stax</groupId>
232
            <artifactId>stax</artifactId>
233
            <scope>runtime</scope>
234
        </dependency>
235
        <dependency>
236
            <groupId>javax.xml.stream</groupId>
237
            <artifactId>stax-api</artifactId>
238
            <scope>runtime</scope>
239
        </dependency>
240
        <dependency>
241
            <groupId>com.fasterxml.jackson.core</groupId>
242
            <artifactId>jackson-core</artifactId>
243
            <scope>runtime</scope>
244
        </dependency>
245
        <dependency>
246
            <groupId>com.fasterxml.jackson.core</groupId>
247
            <artifactId>jackson-databind</artifactId>
248
            <scope>runtime</scope>
249
        </dependency>
250
        <dependency>
251
            <groupId>com.fasterxml.jackson.core</groupId>
252
            <artifactId>jackson-annotations</artifactId>
253
            <scope>runtime</scope>
254
        </dependency>
255
        <dependency>
256
            <groupId>com.ibm.icu</groupId>
257
            <artifactId>icu4j</artifactId>
258
            <scope>runtime</scope>
259
        </dependency>
260
        <dependency>
261
            <groupId>org.gvsig</groupId>
262
            <artifactId>org.gvsig.app.document.table.app.mainplugin</artifactId>
263
            <scope>compile</scope>
264
        </dependency>
265
    </dependencies>
266

    
267
    <properties>
268
        <gvsig.package.info.state>testing</gvsig.package.info.state>
269
        <gvsig.package.info.official>true</gvsig.package.info.official>
270
        <gvsig.package.info.dependencies>required: org.gvsig.app -ge 2.4.0</gvsig.package.info.dependencies>
271
        <gvsig.package.info.categories />
272
        <gvsig.package.info.name>Reports</gvsig.package.info.name>
273
        <gvsig.package.info.description>Tools: Reports, jss inegration in gvSIG</gvsig.package.info.description>
274
        <gvsig.package.info.owner>gvSIG Association</gvsig.package.info.owner>
275
        <gvsig.package.info.javaVM>j1_8</gvsig.package.info.javaVM>
276
        <gvsig.package.info.sourcesURL>${project.scm.url}</gvsig.package.info.sourcesURL>
277
        <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/gvsig-report/pool</gvsig.package.info.poolURL>
278
    </properties>
279

    
280
</project>