Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 765 Bytes

README.md

File metadata and controls

38 lines (34 loc) · 765 Bytes

NetArmor

Reactor Netty Provider

This provider is used to integrate NetArmor Enhanced security features to Reactor Netty based servers.

Installation

Please note, that you should first add exploit.org's repository.

Maven:

<repositories>
    <repository>
        <id>exploit</id>
        <name>Exploit Repository</name>
        <url>https://maven.exploit.org</url>
    </repository>
</repositories>
<dependency>
    <groupId>org.exploit</groupId>
    <artifactId>netarmor-reactor-netty</artifactId>
    <version>1.1</version>
</dependency>

Gradle:

repositories {
    mavenCentral()

    maven {
        url("https://maven.exploit.org")
    }
}
implementation 'org.exploit:netarmor-reactor-netty:1.0'