Apache Struts 2.5.x
Installation and configuration guide for NES for Apache Struts 2.5.x
Setup Instructions
NES for Apache Struts requires Java 8+.
Example repositories showing before/after configuration:
Configure Registry
Create or update your registry configuration:
Maven (~/.m2/settings.xml)
Gradle (~/.gradle/gradle.properties)
<settings>
<servers>
<server>
<id>herodevs-nes-registry</id>
<username>any_text_here_not_used</username>
<password>YOUR_NES_ACCESS_TOKEN</password>
</server>
</servers>
</settings>
See the guides for Sonatype Nexus or JFrog Artifactory for setup to the HeroDevs NES registry.
Update Build Configuration
Add the NES repository and dependencies to your build configuration:
Look up a specific artifact version in the "NES Maven Artifacts: Paid Versions" table.
Maven
Gradle
<!-- Update Struts dependencies -->
<dependencies>
<dependency>
<groupId>com.herodevs.nes.apache.struts</groupId>
<artifactId>struts2-core</artifactId>
<version>2.5.33-struts2-2.5.35</version>
</dependency>
<dependency>
<groupId>com.herodevs.nes.apache.struts</groupId>
<artifactId>struts2-config-browser-plugin</artifactId>
<version>2.5.33-struts2-2.5.35</version>
</dependency>
</dependencies>
<!-- Add NES repository -->
<repositories>
<repository>
<id>herodevs-nes-registry</id>
<url>https://registry.nes.herodevs.com/maven</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>herodevs-nes-registry</id>
<url>https://registry.nes.herodevs.com/maven</url>
</pluginRepository>
</pluginRepositories>
Build
Run your build tool:
Maven
Gradle
mvn clean install
Verification
To verify your installation, check that:
- Dependencies are downloaded successfully
- No version conflicts are reported in your build
- Your application starts without errors
Manual Downloads
The direct download URLs for NES for Apache Struts packages follow this format:
Portion | Value |
---|---|
base_url | https://registry.nes.herodevs.com/maven/com/herodevs/nes/apache/struts/ |
package_name | struts2-core |
version | 2.5.33-struts2-2.5.35 |
filename | package_name + version + extension |