MVN

cat.inspiracio : html-servlet

Maven & Gradle

Aug 17, 2016

HTML Servlet · HTMLServlet provides HTML templating with server-side javascript. HTMLServlet is a servlet that is registered on *.html. It reads the html file at the right location according to URL. It renders the file as html, executing some scripting: * ${expressions} in element bodies and attribute values * data-* attributes for conditionals, loops, local variables, and inclusion * <script> element with server-side javascript.

<dependency>
    <groupId>cat.inspiracio</groupId>
    <artifactId>html-servlet</artifactId>
    <version>0.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cat.inspiracio : html-servlet to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.3

All Versions

Choose a version of cat.inspiracio : html-servlet to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
html-servlet-0.0.3
html-servlet-0.0.2

How to add a dependency to Maven

Add the following cat.inspiracio : html-servlet maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cat.inspiracio</groupId>
    <artifactId>html-servlet</artifactId>
    <version>0.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cat.inspiracio : html-servlet gradle dependency to your build.gradle file:

implementation 'cat.inspiracio:html-servlet:0.0.3'

Gradle Kotlin DSL: Add the following cat.inspiracio : html-servlet gradle kotlin dependency to your build.gradle.kts file:

implementation("cat.inspiracio:html-servlet:0.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following cat.inspiracio : html-servlet sbt scala dependency to your build.sbt file:

libraryDependencies += "cat.inspiracio" % "html-servlet" % "0.0.3"

Advertisement