MVN

oscube : oscube

Maven & Gradle

Sep 26, 2005
1 usages

oscube · OSCube is a framework of sorts. I find myself writing a particular type of application, some kind of job engine, repeatedly and OSCube is the generic version there-of. It uses Simple-JNDI, and therefore really just basic JNDI, as its configuration system, and the Quartz scheduler for Cron-work.

<dependency>
    <groupId>oscube</groupId>
    <artifactId>oscube</artifactId>
    <version>0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of oscube : oscube to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.3

All Versions

Choose a version of oscube : oscube to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.3
oscube-0.3
0.2
oscube-0.2
0.1
oscube-0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>oscube</groupId>
    <artifactId>oscube</artifactId>
    <version>0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following oscube : oscube gradle dependency to your build.gradle file:

implementation 'oscube:oscube:0.3'

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

implementation("oscube:oscube:0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following oscube : oscube sbt scala dependency to your build.sbt file:

libraryDependencies += "oscube" % "oscube" % "0.3"