Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Build files
/dist/
/build/
/out/

# Dependency directories
/node_modules/
__pycache__/
/target/

# Configuration files
.env
*.local

# IDE-specific files
.vscode/
/.idea/

# System files
Thumbs.db
.DS_Store

# Logs and temporary files
*.log
*.tmp
*.swp

# Secret files
secrets.json


.gradle/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TransformationExplorer
Binary file added bin/main/patternMatch/MapSplitTransformer.class
Binary file not shown.
Binary file added bin/main/patternMatch/MapsyMapvTransformer.class
Binary file not shown.
Binary file not shown.
Binary file added bin/main/patternMatch/NamedSystemGraph.class
Binary file not shown.
Binary file not shown.
Binary file added bin/main/patternMatch/PatternMatcher.class
Binary file not shown.
Binary file added bin/main/patternMatch/Transformer.class
Binary file not shown.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,19 @@ repositories {
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}

def fioVersion = "0.7.13"
//def fioVersion = "v0.7.19"

// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'io.github.forsyde:forsyde-io-java-core:0.6.4'
implementation 'io.github.forsyde:forsyde-io-java-graphviz:0.6.4'
implementation "com.github.forsyde.forsyde-io:forsyde-io-java-core:$fioVersion" // or newer
implementation "com.github.forsyde.forsyde-io:forsyde-io-java-libforsyde:$fioVersion" // or newer
implementation "com.github.forsyde.forsyde-io:forsyde-io-java-graphviz:$fioVersion" // or newer

// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
Expand Down
Loading