mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
be102e501b
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_2_1_1@1042318 13f79535-47bb-0310-9956-ffa450edef68
47 lines
2.0 KiB
XML
47 lines
2.0 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-osgi-bundles</artifactId>
|
|
<version>2.2.1.1-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-osgi-admin-bundle</artifactId>
|
|
<packaging>bundle</packaging>
|
|
<name>Struts 2 OSGi Admin Bundle</name>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_2_1/bundles/admin</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_2_1/bundles/admin</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/struts/struts2/tags/STRUTS_2_2_1/bundles/admin</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-osgi-plugin</artifactId>
|
|
<version>${pom.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<manifestLocation>META-INF</manifestLocation>
|
|
<Struts2-Enabled>true</Struts2-Enabled>
|
|
<Import-Package>*,com.opensymphony.xwork2</Import-Package>
|
|
<Export-Package>org.apache.struts2.osgi.admin*</Export-Package>
|
|
<Spring-Context>*;create-asynchronously:=false</Spring-Context>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|