mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
750bbfc0b5
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_2_1_1@1042525 13f79535-47bb-0310-9956-ffa450edef68
74 lines
2.6 KiB
XML
74 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-plugins</artifactId>
|
|
<version>2.2.1.1-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-osgi-plugin</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Struts 2 OSGi Plugin</name>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_2_1_1/plugins/osgi</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_2_1_1/plugins/osgi</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/struts/struts2/branches/STRUTS_2_2_1_1/plugins/osgi</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>org.apache.felix.main</artifactId>
|
|
<version>1.4.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>1.6.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-tools</artifactId>
|
|
<version>1.3</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>struts</groupId>
|
|
<artifactId>struts</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<scope>test</scope>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|