MVN

net.sourceforge.jseq : jseq

Maven & Gradle

Dec 11, 2011
1 usages

JSeq · JSeq is a tool to automatically create UML sequence diagrams. It works by following the execution of a Java program, noting each method entry and exit. It then generates a sequence diagram from this information.

<dependency>
    <groupId>net.sourceforge.jseq</groupId>
    <artifactId>jseq</artifactId>
    <version>0.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sourceforge.jseq : jseq to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.6

All Versions

Choose a version of net.sourceforge.jseq : jseq to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6
jseq-0.6

How to add a dependency to Maven

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

<dependency>
    <groupId>net.sourceforge.jseq</groupId>
    <artifactId>jseq</artifactId>
    <version>0.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sourceforge.jseq : jseq gradle dependency to your build.gradle file:

implementation 'net.sourceforge.jseq:jseq:0.6'

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

implementation("net.sourceforge.jseq:jseq:0.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sourceforge.jseq : jseq sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sourceforge.jseq" % "jseq" % "0.6"