MVN

com.github.talberto : atgdust

Maven & Gradle

Nov 27, 2014
0 stars

ATG DUST · ATG DUST is a framework for building JUnit tests for applications built on the ATG Dynamo platform. This framework allows one to quickly write test code that depends up Nucleus or ATG Repositories. By using this framework one can drastically cut down on development time. It takes only a few seconds to start up a test with a repository, but it may take multiple minutes to start up an application server. To get started with DUST, take a look at http://atgdust.sourceforge.net/first-test.html. This page will walk you through the process of running a basic test which starts Nucleus. After that, read the other getting started guides to describe how to create standalone Junit tests which can startup repositories and use the DynamoHttpServletResponse classes. For only ATG10 and tested.

<dependency>
    <groupId>com.github.talberto</groupId>
    <artifactId>atgdust</artifactId>
    <version>2.1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.talberto : atgdust to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.0

All Versions

Choose a version of com.github.talberto : atgdust to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
atgdust-2.1.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.github.talberto</groupId>
    <artifactId>atgdust</artifactId>
    <version>2.1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.talberto : atgdust gradle dependency to your build.gradle file:

implementation 'com.github.talberto:atgdust:2.1.0'

Gradle Kotlin DSL: Add the following com.github.talberto : atgdust gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.talberto:atgdust:2.1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.talberto : atgdust sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.talberto" % "atgdust" % "2.1.0"

Advertisement