2010-07-17 09:13:53 +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">
|
|
|
|
|
<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>
|
2010-07-17 09:13:53 +00:00
|
|
|
</parent>
|
2013-05-20 07:29:24 +00:00
|
|
|
|
2010-07-17 09:13:53 +00:00
|
|
|
<artifactId>struts2-convention-plugin</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>Struts 2 Convention Plugin</name>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<instructions>
|
|
|
|
|
<Bundle-Activator>org.apache.struts2.osgi.StrutsActivator</Bundle-Activator>
|
|
|
|
|
<manifestLocation>META-INF</manifestLocation>
|
|
|
|
|
</instructions>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
</build>
|
2013-05-20 07:29:24 +00:00
|
|
|
|
2010-07-17 09:13:53 +00:00
|
|
|
<dependencies>
|
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>
|
2010-07-17 09:13:53 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2013-05-20 07:29:24 +00:00
|
|
|
|
2013-10-23 10:56:53 +00:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2010-07-17 09:13:53 +00:00
|
|
|
</project>
|