2006-11-14 02:53:02 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-07-29 15:55:59 +00:00
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
-->
|
2008-04-17 10:01:30 +00: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-11-14 02:53:02 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-plugins</artifactId>
|
2018-12-30 14:50:11 +03:30
|
|
|
<version>2.3.37</version>
|
2006-11-14 02:53:02 +00:00
|
|
|
</parent>
|
2013-05-20 07:29:24 +00:00
|
|
|
|
2006-11-14 02:53:02 +00:00
|
|
|
<artifactId>struts2-spring-plugin</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>Struts 2 Spring Plugin</name>
|
2007-02-07 13:23:42 +00:00
|
|
|
|
2006-11-14 02:53:02 +00:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
2008-04-17 08:28:52 +00:00
|
|
|
<artifactId>spring-test</artifactId>
|
2006-11-14 02:53:02 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-03-03 07:28:33 +00:00
|
|
|
<dependency>
|
2012-02-23 08:40:53 +00:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2011-03-03 07:28:33 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2009-07-12 18:17:55 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-jci-fam</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2009-09-21 21:36:17 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2006-11-14 02:53:02 +00:00
|
|
|
|
|
|
|
|
</dependencies>
|
2008-04-17 08:06:33 +00:00
|
|
|
|
2013-10-23 10:56:53 +00:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2006-11-14 02:53:02 +00:00
|
|
|
</project>
|