Trial Setup
Installation and configuration guide for NES for Apache Struts 1.1 Trial
Setup Instructions
NES for Apache Struts 1.1 Trial recommends Java 8
Note: username and password are required but can be set to any email address.
Configure Registry
Create or update your registry configuration:
<settings>
<servers>
<server>
<id>herodevs-nes-registry</id>
<username>some@email.com</username>
<password>some@email.com</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 the latest artifact version in the "Struts 1 Release Notes".
<!-- Update Struts 1.1 dependency version for packages struts -->
<dependencies>
<dependency>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<version>1.1.0-struts-1.1.1-trial</version><!-- Updated Version -->
</dependency>
...
</dependencies>
<!-- Add NES repository -->
<repositories>
<repository>
<id>herodevs-nes-registry</id>
<url>https://registry.nes.herodevs.com/maven</url>
</repository>
</repositories>
Build
In order to remove potential obstacles before building your project, make sure the following domains are whitelisted by your firewall/networking team:
registry.nes.herodevs.com
assets.nes.herodevs.com
This will ensure that your network/firewall allows connection to our registry.
Run your build tool:
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/struts/ |
package_name | struts |
version | 1.1.0-struts-1.1.1-trial |
filename | package_name + version + extension |