2006-09-24 02:27:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-07-29 15:55:59 +00:00
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
|
* distributed with this work for additional information
|
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
|
* under the License.
|
|
|
|
|
*/
|
|
|
|
|
-->
|
2022-05-24 13:59:22 +02:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2006-09-24 02:27:41 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2006-09-27 05:59:22 +00:00
|
|
|
<artifactId>struts2-plugins</artifactId>
|
2026-06-26 07:18:26 +02:00
|
|
|
<version>7.2.2-SNAPSHOT</version>
|
2022-05-14 09:12:42 +02:00
|
|
|
</parent>
|
2013-05-20 07:29:24 +00:00
|
|
|
|
2006-09-27 05:59:22 +00:00
|
|
|
<artifactId>struts2-jfreechart-plugin</artifactId>
|
2006-09-24 02:27:41 +00:00
|
|
|
<packaging>jar</packaging>
|
2006-09-27 05:59:22 +00:00
|
|
|
<name>Struts 2 JFreeChart Plugin</name>
|
2007-02-07 13:23:42 +00:00
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependencies>
|
2006-10-10 21:16:01 +00:00
|
|
|
<dependency>
|
2016-07-27 08:37:00 +02:00
|
|
|
<groupId>org.jfree</groupId>
|
2006-10-10 21:16:01 +00:00
|
|
|
<artifactId>jcommon</artifactId>
|
2021-01-03 10:15:09 +01:00
|
|
|
<version>1.0.24</version>
|
2006-10-10 21:16:01 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>gnujaxp</groupId>
|
|
|
|
|
<artifactId>gnujaxp</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-07-27 08:37:00 +02:00
|
|
|
<groupId>org.jfree</groupId>
|
2006-10-10 21:16:01 +00:00
|
|
|
<artifactId>jfreechart</artifactId>
|
2025-07-21 02:10:26 +00:00
|
|
|
<version>1.5.6</version>
|
2006-10-10 21:16:01 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>gnujaxp</groupId>
|
|
|
|
|
<artifactId>gnujaxp</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2009-04-24 08:08:43 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-junit-plugin</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-07-27 08:37:00 +02:00
|
|
|
<dependency>
|
2025-02-24 20:38:21 +11:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2010-12-30 07:03:51 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependencies>
|
2022-05-14 09:12:42 +02:00
|
|
|
|
2013-10-23 10:56:53 +00:00
|
|
|
<properties>
|
2022-05-14 09:12:42 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2013-10-23 10:56:53 +00:00
|
|
|
</properties>
|
2006-09-24 02:27:41 +00:00
|
|
|
</project>
|