Visit NES for Apache Tapestry Home Page
Tapestry 4.1.x
Installation and configuration guide for NES for Apache Tapestry 4.1.x
Setup Instructions
NES for Apache Tapestry 4.1 requires Java 8
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>
Update Build Configuration
Add the NES repository and dependencies to your build configuration:
Look up the latest artifact version in the "Tapestry Release Notes".
Maven
Gradle
<!-- Update Tapestry 4.1 dependency versions -->
<dependencies>
<dependency>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-project</artifactId>
<version>4.1.6-tapestry-4.1.7</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.comassets.nes.herodevs.com
This will ensure that your network/firewall allows connection to our registry.
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 Tapestry packages follow this format:
| Portion | Value |
|---|---|
| base_url | https://registry.nes.herodevs.com/maven/tapestry/ |
| package_name | tapestry |
| version | 4.1.6-tapestry-4.1.7 |
| filename | package_name + version + extension |