MVN

com.jsftoolkit : components-base

Maven & Gradle

Apr 30, 2007

JSF Toolkit Component Creation Framework · The core classes for the JSF Toolkit Component Framework. Includes all framework base and utility classes as well as component kick-start/code-generation and registration tools. Also includes some classes for testing that are reused in other projects. They cannot be factored out into a separate project because they are referenced by the tests and they reference this code (circular dependence).

<dependency>
    <groupId>com.jsftoolkit</groupId>
    <artifactId>components-base</artifactId>
    <version>0.9</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.jsftoolkit : components-base to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9

All Versions

Choose a version of com.jsftoolkit : components-base to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.9
components-base-0.9

How to add a dependency to Maven

Add the following com.jsftoolkit : components-base maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.jsftoolkit</groupId>
    <artifactId>components-base</artifactId>
    <version>0.9</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.jsftoolkit : components-base gradle dependency to your build.gradle file:

implementation 'com.jsftoolkit:components-base:0.9'

Gradle Kotlin DSL: Add the following com.jsftoolkit : components-base gradle kotlin dependency to your build.gradle.kts file:

implementation("com.jsftoolkit:components-base:0.9")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.jsftoolkit : components-base sbt scala dependency to your build.sbt file:

libraryDependencies += "com.jsftoolkit" % "components-base" % "0.9"