MVN

com.thesubgraph.safenet : safenet

Maven & Gradle

May 20, 2024
3 stars

safenet · SafeNet is a library engineered to streamline the configuration of the network layer and dependency injection in your projects. It leverages annotations to automatically furnish essential components such as repositories, API services, and use cases. This eliminates the need for manual setup using @Module and @Provides annotations, thereby simplifying the process of establishing the Network Layer and Dependency Injection for network layer.

<dependency>
    <groupId>com.thesubgraph.safenet</groupId>
    <artifactId>safenet</artifactId>
    <version>0.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.thesubgraph.safenet : safenet to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.4

All Versions

Choose a version of com.thesubgraph.safenet : safenet to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
safenet-0.0.4
safenet-0.0.3
safenet-0.0.2

How to add a dependency to Maven

Add the following com.thesubgraph.safenet : safenet maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.thesubgraph.safenet</groupId>
    <artifactId>safenet</artifactId>
    <version>0.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.thesubgraph.safenet : safenet gradle dependency to your build.gradle file:

implementation 'com.thesubgraph.safenet:safenet:0.0.4'

Gradle Kotlin DSL: Add the following com.thesubgraph.safenet : safenet gradle kotlin dependency to your build.gradle.kts file:

implementation("com.thesubgraph.safenet:safenet:0.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.thesubgraph.safenet : safenet sbt scala dependency to your build.sbt file:

libraryDependencies += "com.thesubgraph.safenet" % "safenet" % "0.0.4"