com.seanshubin.detangler:detangler-domain

Analyzes dependency structure and cycles

License

License

Categories

Categories

Doma Data ORM
GroupId

GroupId

com.seanshubin.detangler
ArtifactId

ArtifactId

detangler-domain
Last Version

Last Version

0.9.4
Release Date

Release Date

Type

Type

jar
Description

Description

com.seanshubin.detangler:detangler-domain
Analyzes dependency structure and cycles

Download detangler-domain

How to add to project

<!-- https://jarcasting.com/artifacts/com.seanshubin.detangler/detangler-domain/ -->
<dependency>
    <groupId>com.seanshubin.detangler</groupId>
    <artifactId>detangler-domain</artifactId>
    <version>0.9.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.seanshubin.detangler/detangler-domain/
implementation 'com.seanshubin.detangler:detangler-domain:0.9.4'
// https://jarcasting.com/artifacts/com.seanshubin.detangler/detangler-domain/
implementation ("com.seanshubin.detangler:detangler-domain:0.9.4")
'com.seanshubin.detangler:detangler-domain:jar:0.9.4'
<dependency org="com.seanshubin.detangler" name="detangler-domain" rev="0.9.4">
  <artifact name="detangler-domain" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.seanshubin.detangler', module='detangler-domain', version='0.9.4')
)
libraryDependencies += "com.seanshubin.detangler" % "detangler-domain" % "0.9.4"
[com.seanshubin.detangler/detangler-domain "0.9.4"]

Dependencies

compile (6)

Group / Artifact Type Version
com.seanshubin.detangler : detangler-analysis jar 0.9.4
com.seanshubin.detangler : detangler-report jar 0.9.4
com.seanshubin.detangler : detangler-scanner jar 0.9.4
com.seanshubin.detangler : detangler-contract-test jar 0.9.4
com.seanshubin.devon : devon-domain jar 1.1.2
org.scala-lang : scala-library jar 2.12.8

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.12 jar 3.0.5

Project Modules

There are no modules declared in this project.

Detangler

Analyzes dependency structure and cycles

Levels

  • there must be at least 1 level
  • the last level is always the class level
  • the second to last level is the package level
  • the first x levels greater than 2 establish a hierarchy
  • every class will be broken down into the same number of levels
    • this makes sensible graphs possible without losing information
    • placeholders will be created if necessary

3 level example

Suppose you had the following configuration

{
  level 3
  startsWith {
    include [[com seanshubin]]
    drop [[com seanshubin]]
  }
}

And the following (contrived) classes

com.seanshubin.detangler.analysis.Detangler
com.seanshubin.detangler.analysis.tree.DetanglerBackedByTree
com.seanshubin.detangler.Metrics
com.seanshubin.CollectionUtil

Here is how they would be broken down into levels

drop top package class
com.seanshubin detangler analysis Detangler
com.seanshubin detangler analysis.tree DetanglerBackedByTree
com.seanshubin detangler root-of-detangler Metrics
com.seanshubin -root- -root- CollectionUtil

Configuration File

{
  reportDir console/target/detangled
  searchPaths [
    console/target/detangler.jar
  ]
  level 2
  startsWith {
    include [[com seanshubin detangler]]
    drop [[com seanshubin detangler]]
    exclude []
  }
  allowedInCycle console/detangler-allowed-in-cycle.txt
  canFailBuild true
}

Running from the command line

java -jar console/target/detangler.jar console/detangler.txt

Running from maven

In the file maven-sample/pom.xml

<plugin>
    <groupId>com.seanshubin.detangler</groupId>
    <artifactId>detangler-maven-plugin</artifactId>
    <version>0.9.4</version>
    <executions>
        <execution>
            <phase>verify</phase>
            <goals>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <detanglerConfig>detangler.txt</detanglerConfig>
    </configuration>
</plugin>

At the console

mvn -f maven-sample/ detangler:report -DdetanglerConfig=detangler.txt

Versions

Version
0.9.4
0.9.3
0.9.2
0.9.1
0.9