MVN

com.j2speed : accessive

Maven & Gradle

Sep 24, 2011

accessive · Sometimes we sacrifice encapsulation just to let us access a method or field of an object from its unit tests. This framework uses reflection and dynamic proxies to access private portion of your objects, allowing you to keep them strongly encapsulated and still be able to test their internals using the provided accessors.

<dependency>
    <groupId>com.j2speed</groupId>
    <artifactId>accessive</artifactId>
    <version>1.1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.j2speed : accessive to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.1

All Versions

Choose a version of com.j2speed : accessive to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
accessive-1.1.1

How to add a dependency to Maven

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

<dependency>
    <groupId>com.j2speed</groupId>
    <artifactId>accessive</artifactId>
    <version>1.1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.j2speed : accessive gradle dependency to your build.gradle file:

implementation 'com.j2speed:accessive:1.1.1'

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

implementation("com.j2speed:accessive:1.1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.j2speed : accessive sbt scala dependency to your build.sbt file:

libraryDependencies += "com.j2speed" % "accessive" % "1.1.1"