MVN

com.github.stephenenright : spring-router

Maven & Gradle

Feb 16, 2021
0 stars

Spring Router · spring-router-mvc is a small, simple but pragmatic project. This project provides an alternative to the default routing mechanism provided by spring mvc. This project provides an API that supports adding routes and routing constraints to your application.

<dependency>
    <groupId>com.github.stephenenright</groupId>
    <artifactId>spring-router</artifactId>
    <version>1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.stephenenright : spring-router to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1

All Versions

Choose a version of com.github.stephenenright : spring-router to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1
spring-router-1.1

How to add a dependency to Maven

Add the following com.github.stephenenright : spring-router maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.stephenenright</groupId>
    <artifactId>spring-router</artifactId>
    <version>1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.stephenenright : spring-router gradle dependency to your build.gradle file:

implementation 'com.github.stephenenright:spring-router:1.1'

Gradle Kotlin DSL: Add the following com.github.stephenenright : spring-router gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.stephenenright:spring-router:1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.stephenenright : spring-router sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.stephenenright" % "spring-router" % "1.1"