|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +/* |
| 4 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 5 | + * or more contributor license agreements. See the NOTICE file |
| 6 | + * distributed with this work for additional information |
| 7 | + * regarding copyright ownership. The ASF licenses this file |
| 8 | + * to you under the Apache License, Version 2.0 (the |
| 9 | + * "License"); you may not use this file except in compliance |
| 10 | + * with the License. You may obtain a copy of the License at |
| 11 | + * |
| 12 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | + * |
| 14 | + * Unless required by applicable law or agreed to in writing, |
| 15 | + * software distributed under the License is distributed on an |
| 16 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | + * KIND, either express or implied. See the License for the |
| 18 | + * specific language governing permissions and limitations |
| 19 | + * under the License. |
| 20 | + */ |
| 21 | +--> |
| 22 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 24 | + <modelVersion>4.0.0</modelVersion> |
| 25 | + <parent> |
| 26 | + <groupId>org.apache.struts</groupId> |
| 27 | + <artifactId>struts2-plugins</artifactId> |
| 28 | + <version>7.0.4-SNAPSHOT</version> |
| 29 | + </parent> |
| 30 | + |
| 31 | + <artifactId>struts2-jasperreports7-plugin</artifactId> |
| 32 | + <packaging>jar</packaging> |
| 33 | + <name>Struts 2 Jasper Reports 7 Plugin [EXPERIMENTAL]</name> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | + <jasperreports7.version>7.0.1</jasperreports7.version> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>net.sf.jasperreports</groupId> |
| 43 | + <artifactId>jasperreports</artifactId> |
| 44 | + <version>${jasperreports7.version}</version> |
| 45 | + <exclusions> |
| 46 | + <!-- not necessary to compile and it force dependency convergence issues --> |
| 47 | + <exclusion> |
| 48 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | + <artifactId>jackson-databind</artifactId> |
| 50 | + </exclusion> |
| 51 | + <exclusion> |
| 52 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | + <artifactId>jackson-annotations</artifactId> |
| 54 | + </exclusion> |
| 55 | + </exclusions> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>net.sf.jasperreports</groupId> |
| 59 | + <artifactId>jasperreports-pdf</artifactId> |
| 60 | + <version>${jasperreports7.version}</version> |
| 61 | + <optional>true</optional> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 65 | + <artifactId>jackson-databind</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.apache.struts</groupId> |
| 69 | + <artifactId>struts2-junit-plugin</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework</groupId> |
| 74 | + <artifactId>spring-web</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.easymock</groupId> |
| 79 | + <artifactId>easymock</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + </dependencies> |
| 83 | +</project> |
0 commit comments