MVN

org.codeprimate : cp-elements

Maven & Gradle

Jul 04, 2023
2 stars

Elements · Java Simplified. Extensions and Useful Constructs for the Java Platform. Codeprimate Elements (a.k.a. cp-elements) is a Java library and micro-framework used to simplify the development of software applications written in Java. Elements packages several APIs into one library in order to address various application concerns and aspects of software design and development collectively and conveniently. Elements is a highly simple, yet robust and proven library built on solid OO principles, software design patterns and best practices to effectively solve common and reoccurring problems in software development.

<dependency>
    <groupId>org.codeprimate</groupId>
    <artifactId>cp-elements</artifactId>
    <version>1.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.codeprimate : cp-elements to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.3
  • Latest Release Candidate: 1.0.0-RC2

All Versions

Choose a version of org.codeprimate : cp-elements to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0.x
cp-elements-2.0.0-M1
1.0.x
cp-elements-1.0.3
cp-elements-1.0.2
cp-elements-1.0.1
cp-elements-1.0.0
cp-elements-1.0.0-RC2
cp-elements-1.0.0-RC1
cp-elements-1.0.0-M9
cp-elements-1.0.0-M8
cp-elements-1.0.0-M7
cp-elements-1.0.0.M6
cp-elements-1.0.0.M5
cp-elements-1.0.0.M4
cp-elements-1.0.0.M3
cp-elements-1.0.0.M2
cp-elements-1.0.0.M1

How to add a dependency to Maven

Add the following org.codeprimate : cp-elements maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.codeprimate</groupId>
    <artifactId>cp-elements</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.codeprimate : cp-elements gradle dependency to your build.gradle file:

implementation 'org.codeprimate:cp-elements:1.0.3'

Gradle Kotlin DSL: Add the following org.codeprimate : cp-elements gradle kotlin dependency to your build.gradle.kts file:

implementation("org.codeprimate:cp-elements:1.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.codeprimate : cp-elements sbt scala dependency to your build.sbt file:

libraryDependencies += "org.codeprimate" % "cp-elements" % "1.0.3"