Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/.vuepress/components/ELSApplication.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ const applications = [
link: "./mysql-and-percona-server/",
icon: "/images/mysql.webp",
},
{
name: "Wildfly",
versions: "19.0.1.Final",
link: "./wildfly/",
icon: "/images/Wildfly.webp",
},
];
</script>

Expand Down
4 changes: 4 additions & 0 deletions docs/.vuepress/config-client/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,10 @@ export default {
title: 'MySQL and Percona Server',
icon: '/images/mysql.webp',
},
{
path: '/els-for-applications/wildfly/',
icon: '/images/Wildfly.webp',
},
"/els-for-applications/managing-els-repository/",
]
},
Expand Down
Binary file added docs/.vuepress/public/images/Wildfly.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
170 changes: 170 additions & 0 deletions docs/els-for-applications/wildfly/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
# Wildfly

Wildfly is a trademark of Red Hat, Inc.

<br>

TuxCare's Endless Lifecycle Support (ELS) for Wildfly provides security patches and selected bug fixes that are integral to the stable operation of applications running on these versions of Wildfly. These components have either reached their end of standard support from vendors or have reached End of Life (EOL).
Our ELS for Wildfly service is designed to provide solutions for organizations that are not yet ready to migrate to newer versions and that are seeking long-term stability for their legacy Wildfly applications.

## Supported Versions

* Wildfly 19.0.1.Final

## Installation

<ELSPrerequisites>

* Nexus repository access credentials (username and password) — contact [sales@tuxcare.com](mailto:sales@tuxcare.com)
* To browse available artifacts, visit TuxCare [Nexus](https://nexus.repo.tuxcare.com/#browse/browse:els_java) and click **Sign in** in the top right corner. You may need to refresh the page after logging in.

</ELSPrerequisites>

<ELSSteps>

1. **Navigate to the build tool directory**
* Windows
```text
Maven: C:\Users\{username}\.m2
Gradle: C:\Users\{username}\.gradle
```
* macOS
```text
Maven: /Users/{username}/.m2
Gradle: /Users/{username}/.gradle
```
* Linux
```text
Maven: /home/{username}/.m2
Gradle: /home/{username}/.gradle
```

2. **Configure credentials**

:::tip
For Maven, you may choose any valid `<id>` value instead of `tuxcare-registry`, but the same value must be used in both `settings.xml` and `pom.xml`.
:::

<CodeTabs :tabs="[
{ title: 'Maven (~/.m2/settings.xml)', content: mavencreds },
{ title: 'Gradle (~/.gradle/gradle.properties)', content: gradlecreds }
]" />

Replace `USERNAME` and `PASSWORD` with your TuxCare credentials (see [Prerequisites](#prerequisites) above).

3. **Add the TuxCare repository**

Add the TuxCare Wildfly repository and plugins to your build configuration.

<CodeTabs :tabs="[
{ title: 'Maven (pom.xml)', content: mavenrepo },
{ title: 'Gradle (build.gradle)', content: gradlerepo }
]" />

* To fully switch from the official Wildfly repository, replace it with the TuxCare repository.
* To keep both, add TuxCare after the official one.

Example Maven and Gradle projects are available on GitHub. Remember to set the required environment variables.
* [Maven](https://github.com/cloudlinux/securechain-java/tree/main/examples/maven)
* [Gradle](https://github.com/cloudlinux/securechain-java/tree/main/examples/gradle)

4. **Update dependencies**

Replace Wildfly dependencies with TuxCare-maintained versions. You can find artifact versions on [Nexus](https://nexus.repo.tuxcare.com/#browse/browse:els_java) — sign in with your TuxCare credentials.

<CodeTabs :tabs="[
{ title: 'Maven (pom.xml)', content: mavendeps },
{ title: 'Gradle (build.gradle)', content: gradledeps }
]" />

5. **Verify the setup**

Use your build tool to list the project's dependencies and confirm TuxCare packages are resolved correctly.

<CodeTabs :tabs="[
{ title: 'Maven', content: `mvn dependency:tree -Dverbose` },
{ title: 'Gradle', content: `./gradlew dependencies --configuration runtimeClasspath` }
]" />

6. **Build the project**

Include any library from the repository and run a build.

<CodeTabs :tabs="[
{ title: 'Maven', content: `mvn clean install` },
{ title: 'Gradle', content: `./gradlew build` }
]" />

The build tool you're using should be able to identify and resolve dependencies from the TuxCare ELS for Wildfly repository.

</ELSSteps>

## What's Next?

<WhatsNext hide-title>

* ![](/images/eye.webp) [CVE Tracker](https://tuxcare.com/cve-tracker/?product=Wildfly) — Track vulnerability fixes and updates
* ![](/images/shield.webp) [Available fixes](https://tuxcare.com/cve-tracker/fixes?product=Wildfly) — Patched versions and changelogs
* ![](/images/clipboard-notes.webp) [Supported components](https://tuxcare.com/cve-tracker/products?product=Wildfly) — Full list of product parts covered by ELS
* ![](/images/shield-alert.webp) [VEX feed](https://security.tuxcare.com/vex/cyclonedx/els_lang_java/org.wildfly.core/) — Vulnerability Exploitability eXchange feed
* ![](/images/wrench.webp) [Managing the ELS repository](/els-for-applications/managing-els-repository/) — Update to newer versions

</WhatsNext>

<!-- data for Wildfly instructions used in code blocks -->

<script setup>
const mavencreds =
`<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0">
<servers>
<server>
<id>tuxcare-registry</id>
<username>USERNAME</username>
<password>PASSWORD</password>
</server>
</servers>
</settings>`

const gradlecreds =
`tuxcare_registry_url=https://nexus.repo.tuxcare.com/repository/els_java/
tuxcare_registry_user=USERNAME
tuxcare_registry_password=PASSWORD`

const mavenrepo =
`<repositories>
<repository>
<id>tuxcare-registry</id>
<url>https://nexus.repo.tuxcare.com/repository/els_java/</url>
</repository>
</repositories>`

const gradlerepo =
`repositories {
maven {
url = uri(providers.gradleProperty("tuxcare_registry_url").get())
credentials {
username = providers.gradleProperty("tuxcare_registry_user").get()
password = providers.gradleProperty("tuxcare_registry_password").get()
}
authentication {
basic(BasicAuthentication)
}
}
mavenCentral()
}`

const mavendeps =
`<dependencies>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-cli</artifactId>
<version>19.0.1.Final-tuxcare.1</version>
</dependency>
</dependencies>`

const gradledeps =
`dependencies {
implementation("org.wildfly.core:wildfly-cli:19.0.1.Final-tuxcare.1")
}`
</script>