|
Project Information
Members
|
This project is a maven repository for unofficial Struts 2 Plugins. Click here to visit the Struts 2 Plugin Registry. Click here to browse the available plugins. To allow maven to use this repository, add the following to your pom.xml: ...
<repositories>
...
<repository>
<id>Maven Plugin Repository</id>
<url>http://struts2plugin-maven-repo.googlecode.com/svn/trunk/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</project>Then add the dependency for the plugin, for example: <dependencies>
<dependency>
<groupId>com.googlecode.struts2scopeplugin</groupId>
<artifactId>struts2-scope-plugin</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
|