MVN

net.sf.sfac : sfac-utils

Maven & Gradle

Mar 14, 2016
2 usages

SFaC - Utilities · This project is the model side of the Swing Framework and Components (SFaC). If your doing a clean separation between model (or business) and view (or GUI or rendering) parts of your application, (like in the MVC pattern), then the only classes of SFaC your model can access are in this project. On the other hand, the classes in sfac-core project are GUI-specific and should not be known by your model.

<dependency>
    <groupId>net.sf.sfac</groupId>
    <artifactId>sfac-utils</artifactId>
    <version>0.8</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sf.sfac : sfac-utils to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.8

All Versions

Choose a version of net.sf.sfac : sfac-utils to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.8
sfac-utils-0.8
0.7
sfac-utils-0.7
0.6
sfac-utils-0.6
0.5
sfac-utils-0.5
0.4
sfac-utils-0.4
0.3
sfac-utils-0.3

How to add a dependency to Maven

Add the following net.sf.sfac : sfac-utils maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sf.sfac</groupId>
    <artifactId>sfac-utils</artifactId>
    <version>0.8</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sf.sfac : sfac-utils gradle dependency to your build.gradle file:

implementation 'net.sf.sfac:sfac-utils:0.8'

Gradle Kotlin DSL: Add the following net.sf.sfac : sfac-utils gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sf.sfac:sfac-utils:0.8")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sf.sfac : sfac-utils sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sf.sfac" % "sfac-utils" % "0.8"

Advertisement