replication-package-icse25_lissa-toward-generic-traceability-link-recovery-through-rag

Replication Package for the ICSE 2025 paper "LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation"

https://github.com/ardoco/replication-package-icse25_lissa-toward-generic-traceability-link-recovery-through-rag

Science Score: 49.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: acm.org, zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.6%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Replication Package for the ICSE 2025 paper "LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation"

Basic Info
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 3
Created almost 2 years ago · Last pushed over 1 year ago
Metadata Files
Readme License Citation

README.md

DOI

Replication Package for "LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation"

by Dominik Fuch, Tobias Hey, Jan Keim, Haoyu Liu, Niklas Ewald, Tobias Thirolf, and Anne Koziolek

This is the replication package for our paper "LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation". This package contains the source code for the LiSSA tool, the dataset used in the evaluation, and the evaluation results.

Requirements

  • Java JDK 21 + Maven 3
  • Open AI subscription: API Key & Organization ID

Structure of this Repository

  • LiSSA-RATLR-V1 contains the code and datasets used to create the results without the significance tests. It represents a former version of the tool (i.e., without features like seed definition)
  • LiSSA-RATLR-V2 contains the code and datasets used to create the results with the significance tests. It represents the most recent version of the tool (at the time of the paper).
  • Note: The most recent version of the tool can be found at ArDoCo/LiSSA-RATLR
  • In the current directory, you will also find some Excel sheet that contain the tables of the evaluation results.
  • In statistical-evaluation, you will find the R scripts used to perform the significance tests.

Each of the directories contains a README that explains how to run the tool and reproduce the results.

Evaluation Results

Our summarized evaluation results can be found in the Excel sheets in the root directory of this repository. The Excel sheets contain the evaluation results for the different datasets and configurations.

  • Evaluation-Req2Code.xlsx: Contains the results of the requirement to code evaluation.
  • Evaluation-Req2Code-Significance.xlsx: Contains the results of the requirement to code evaluation with significance tests.
  • Evaluation-SAD.xlsx: Contains the results of the software architecture documentation (SAD) evaluation. (SAD to Code, SAD to Software Architecture Model (SAM))
  • Evaluation-SAD-Significance.xlsx: Contains the results of the software architecture documentation (SAD) evaluation with significance tests.

Installation (Docker)

[!TIP] We suggest using the provided docker container, as it contains everything you need to run the tool. To run the container, execute docker run -it --rm ghcr.io/ardoco/icse25. The container will start in this directory. The docker container contains everything, including the cache. Thus, you do not need access to OpenAI to run the evaluation.

Installation (Manual)

You can build the projects on your own by executing mvn package in the lissa subdirectories in LiSSA-RATLR-V1 and LiSSA-RATLR-V2. The Jar will be created in the target folder in the lissa project (lissa/target/ratlr-*-jar-with-dependencies.jar).

[!WARNING] To extract the cache for the evaluation, you can use the provided tar.gz file (cache.tgz). Since GitHub does not allow large files in releases, the cache is split into multiple parts. * the cache was created by split -b 1G cache.tgz cache.tgz.part. * To get the cache.tgz: cat cache.tgz.part.* > cache.tgz * sha256sum cache.tgz: 8e3b9d8ea7b54453605a8235aea7d33176a8635cd69bea2a0892da3b6a152881

Extract cache.tgz in the repository to get the caches at their desired locations (tar xzf cache.tgz).

Reproduce the Results

To reproduce the results of our evaluation, please follow the instructions in the README of the respective directories.

[!IMPORTANT] You can run the complete evaluation using the provided run-experiments.sh. This script will run the evaluation for all configurations and datasets. However, the script assumes you have already set the OpenAI API key and organization in your environment variables. If you want to use the cache and therefore do not need access to OpenAI, you can set the API key and organization to dummyby executing export OPENAI_ORGANIZATION_ID=dummy and export OPENAI_API_KEY=dummy. To finally run the script, execute bash run-experiments.sh.

[!NOTE] LiSSA-RATLR-V1 contains the code and datasets used to create the results without the significance tests. The README in the directory contains more information about the command line parameters, i.e., the evaluate.sh scripts that can be used to run the experiments.

[!NOTE] LiSSA-RATLR-V2 contains the code and datasets used to create the runs used to perform significance tests. The README in the directory contains more information about the command line parameters, i.e., the explanation that you can run the experiments by specifying the configurations and run java -jar compiled-lissa.jar eval -c config.json

Reusing LiSSA

LiSSA is a framework that can be used to recover traceability links between any two types of artifacts. Every stage of LiSSA can be found in their respective packages in LiSSA-RATLR-V2/lissa/src/main/java/edu/kit/kastel/sdq/lissa/ratlr/.

Configuration

To reuse LiSSA, you need to provide a configuration file that configures the different stages of LiSSA. We provide a configuration template that you can use as a starting point. Moreover, you can find the configuration files used in the evaluation in the respective evaluation directories; e.g., LiSSA-RATLR-V2/lissa/configs/req2code-significance/SMOS133742243artifactartifactreasoninggptgpt-4o-2024-05-13.json.

Stages of LiSSA

The LiSSA execution pipeline is defined in Evaluation.java.

LiSSA contains multiple modules that can be used or extended:

  • artifactprovider: Provides / Parses the artifacts from a dataset.
  • preprocessor: Preprocessors for loaded artifacts. E.g., splitting, chunking, etc.
  • embeddingcreator: Creates embeddings for the artifacts. Providers are currently OpenAI, Ollama, and Onnx.
  • classifier: Here, the prompts and LLMs are defined. Here, you can define new classifiers, change prompts, or change the LLMs.
  • resultaggregator: Aggregates the results of the classifier. This is used to get the traceability links on the right level of granularity.
  • postprocessor: Postprocesses the results of the classifier. It is mostly used for changing the identifiers to match the format of the gold standards.

Owner

  • Name: ArDoCo
  • Login: ArDoCo
  • Kind: organization
  • Location: Germany

Architecture Documentation Consistency - Aiming to provide consistency analyses between formal models and informal (textual) documentation

GitHub Events

Total
  • Watch event: 1
Last Year
  • Watch event: 1

Dependencies

Dockerfile docker
  • maven 3-eclipse-temurin-21 build
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-common-web/docker-compose.yml docker
  • postgres ${POSTGRES_VERSION}
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-libreoffice/docker/Dockerfile docker
  • amazoncorretto 17-alpine build
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/docs/Dockerfile docker
  • ruby 2.7 build
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/datastore-dev/Dockerfile docker
  • gcr.io/google.com/cloudsdktool/cloud-sdk alpine build
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/docker-compose.yml docker
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/solr/Dockerfile docker
  • solr 8.11.1 build
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/src/main/docker/Dockerfile docker
  • openjdk 11-jre build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.auth/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.image/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.persistence/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.recommender/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.registry/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.webui/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.database/Dockerfile docker
  • mariadb 10.4.12 build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.docker.all/Dockerfile docker
  • descartesresearch/teastore-base latest build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.dockerbase/Dockerfile docker
  • tomcat 10.0.7-jdk11 build
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.kieker.rabbitmq/Dockerfile docker
  • rabbitmq management build
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-middleware/go.mod go
  • github.com/cespare/xxhash/v2 v2.2.0
  • github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
  • github.com/klauspost/compress v1.10.3
  • github.com/redis/go-redis/v9 v9.0.3
  • github.com/sirupsen/logrus v1.9.0
  • golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
  • golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
  • nhooyr.io/websocket v1.8.7
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-middleware/go.sum go
  • github.com/bsm/ginkgo/v2 v2.7.0
  • github.com/bsm/gomega v1.26.0
  • github.com/cespare/xxhash/v2 v2.2.0
  • github.com/davecgh/go-spew v1.1.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
  • github.com/gin-contrib/sse v0.1.0
  • github.com/gin-gonic/gin v1.6.3
  • github.com/go-playground/assert/v2 v2.0.1
  • github.com/go-playground/locales v0.13.0
  • github.com/go-playground/universal-translator v0.17.0
  • github.com/go-playground/validator/v10 v10.2.0
  • github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee
  • github.com/gobwas/pool v0.2.0
  • github.com/gobwas/ws v1.0.2
  • github.com/golang/protobuf v1.3.3
  • github.com/golang/protobuf v1.3.5
  • github.com/google/go-cmp v0.4.0
  • github.com/google/gofuzz v1.0.0
  • github.com/gorilla/websocket v1.4.1
  • github.com/json-iterator/go v1.1.9
  • github.com/klauspost/compress v1.10.3
  • github.com/leodido/go-urn v1.2.0
  • github.com/mattn/go-isatty v0.0.12
  • github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421
  • github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/redis/go-redis/v9 v9.0.3
  • github.com/sirupsen/logrus v1.9.0
  • github.com/stretchr/objx v0.1.0
  • github.com/stretchr/testify v1.3.0
  • github.com/stretchr/testify v1.4.0
  • github.com/stretchr/testify v1.7.0
  • github.com/ugorji/go v1.1.7
  • github.com/ugorji/go/codec v1.1.7
  • golang.org/x/sys v0.0.0-20200116001909-b77594299b42
  • golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
  • golang.org/x/text v0.3.2
  • golang.org/x/time v0.0.0-20191024005414-555d28b269f0
  • golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
  • golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  • golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
  • gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
  • gopkg.in/yaml.v2 v2.2.2
  • gopkg.in/yaml.v2 v2.2.8
  • gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  • nhooyr.io/websocket v1.8.7
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-fsesl-client/pom.xml maven
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-recording-imex/pom.xml maven
  • ch.qos.logback:logback-classic 1.2.11
  • ch.qos.logback:logback-core 1.2.11
  • org.bigbluebutton:bbb-common-web 0.0.3-SNAPSHOT
  • org.junit.platform:junit-platform-console-standalone 1.8.2
  • org.slf4j:slf4j-api 1.7.30
  • org.junit.jupiter:junit-jupiter-api 5.7.2 test
  • org.junit.jupiter:junit-jupiter-engine 5.7.2 test
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-web/build.gradle maven
  • com.google.code.gson:gson 2.8.9 implementation
  • com.zaxxer:nuprocess 2.0.6 implementation
  • io.lettuce:lettuce-core 6.1.9.RELEASE implementation
  • io.projectreactor:reactor-core 3.4.12 implementation
  • javax.validation:validation-api 2.0.1.Final implementation
  • net.java.dev.jna:jna 5.10.0 implementation
  • org.apache.tomcat.embed:tomcat-embed-core ${tomcatEmbedVersion} implementation
  • org.apache.tomcat.embed:tomcat-embed-el ${tomcatEmbedVersion} implementation
  • org.apache.tomcat.embed:tomcat-embed-websocket ${tomcatEmbedVersion} implementation
  • org.apache.tomcat:tomcat-annotations-api ${tomcatEmbedVersion} implementation
  • org.apache.xmlbeans:xmlbeans 5.0.3 implementation
  • org.bigbluebutton:bbb-common-message_2.13 0.0.22-SNAPSHOT implementation
  • org.bigbluebutton:bbb-common-web 0.0.3-SNAPSHOT implementation
  • org.freemarker:freemarker 2.3.31 implementation
  • org.grails.plugins:async * implementation
  • org.grails.plugins:cache * implementation
  • org.grails.plugins:events * implementation
  • org.grails.plugins:external-config 1.2.2 implementation
  • org.grails.plugins:gsp * implementation
  • org.grails.plugins:scaffolding * implementation
  • org.grails.plugins:views-json 2.1.1 implementation
  • org.grails:grails-core 5.2.4 implementation
  • org.grails:grails-gradle-plugin 5.1.4 implementation
  • org.grails:grails-logging * implementation
  • org.grails:grails-plugin-databinding 5.2.4 implementation
  • org.grails:grails-plugin-i18n * implementation
  • org.grails:grails-plugin-interceptors * implementation
  • org.grails:grails-plugin-rest 5.2.5 implementation
  • org.grails:grails-plugin-services * implementation
  • org.grails:grails-plugin-url-mappings * implementation
  • org.grails:grails-web-boot 5.2.5 implementation
  • org.hibernate:hibernate-core 5.6.1.Final implementation
  • org.json:json 20211205 implementation
  • org.postgresql:postgresql 42.4.3 implementation
  • org.reactivestreams:reactive-streams 1.0.3 implementation
  • org.springframework.boot:spring-boot ${springVersion} implementation
  • org.springframework.boot:spring-boot-autoconfigure ${springVersion} implementation
  • org.springframework.boot:spring-boot-starter-actuator ${springVersion} implementation
  • org.springframework.boot:spring-boot-starter-logging ${springVersion} implementation
  • org.springframework.boot:spring-boot-starter-tomcat ${springVersion} implementation
  • org.springframework.boot:spring-boot-starter-validation ${springVersion} implementation
  • org.springframework.data:spring-data-commons 2.7.6 implementation
  • org.springframework:spring-context 5.3.21 implementation
  • org.springframework:spring-core 5.3.21 implementation
  • org.springframework:spring-webmvc 5.3.26 implementation
  • org.yaml:snakeyaml 1.31 implementation
  • com.bertramlabs.plugins:asset-pipeline-grails 4.0.0 runtimeOnly
  • com.github.javafaker:javafaker 0.12 testImplementation
  • org.grails.plugins:geb * testImplementation
  • org.grails:grails-gorm-testing-support * testImplementation
  • org.grails:grails-web-testing-support * testImplementation
  • net.sourceforge.htmlunit:htmlunit 2.63.0 testRuntimeOnly
  • org.seleniumhq.selenium:selenium-chrome-driver 4.0.0 testRuntimeOnly
  • org.seleniumhq.selenium:selenium-htmlunit-driver 2.47.1 testRuntimeOnly
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-web/pres-checker/build.gradle maven
  • commons-io:commons-io 2.11.0 implementation
  • org.apache.commons:commons-collections4 4.4 implementation
  • org.apache.commons:commons-compress 1.21 implementation
  • org.apache.commons:commons-lang3 3.9 implementation
  • org.apache.poi:poi 4.1.2 implementation
  • org.apache.poi:poi-ooxml 4.1.2 implementation
  • org.apache.poi:poi-ooxml-schemas 4.1.2 implementation
  • org.apache.xmlbeans:xmlbeans 3.0.2 implementation
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/build.gradle maven
  • com.github.sialcasa.mvvmFX:mvvmfx-validation f195849ca9 implementation
  • com.github.tomtung:latex2unicode_2.13 0.3.2 implementation
  • com.google.guava:guava 31.1-jre implementation
  • com.h2database:h2-mvstore 2.1.214 implementation
  • com.jfoenix:jfoenix 9.0.10 implementation
  • com.konghq:unirest-java 3.14.2 implementation
  • com.oracle.ojdbc:ojdbc10 19.3.0.0 implementation
  • com.tobiasdiez:easybind 2.2.1-SNAPSHOT implementation
  • com.vladsch.flexmark:flexmark 0.64.2 implementation
  • commons-cli:commons-cli 1.5.0 implementation
  • de.saxsys:mvvmfx 1.8.0 implementation
  • de.undercouch:citeproc-java 3.0.0-beta.2 implementation
  • info.debatty:java-string-similarity 2.0.0 implementation
  • io.github.java-diff-utils:java-diff-utils 4.12 implementation
  • jakarta.annotation:jakarta.annotation-api 2.1.1 implementation
  • jakarta.inject:jakarta.inject-api 2.0.1 implementation
  • org.antlr:antlr4-runtime 4.12.0 implementation
  • org.apache.lucene:lucene-analysis-common 9.5.0 implementation
  • org.apache.lucene:lucene-core 9.5.0 implementation
  • org.apache.lucene:lucene-highlighter 9.5.0 implementation
  • org.apache.lucene:lucene-queries 9.5.0 implementation
  • org.apache.lucene:lucene-queryparser 9.5.0 implementation
  • org.apache.pdfbox:fontbox 3.0.0-RC1 implementation
  • org.apache.pdfbox:pdfbox 3.0.0-RC1 implementation
  • org.apache.pdfbox:xmpbox 3.0.0-RC1 implementation
  • org.bouncycastle:bcprov-jdk18on 1.73 implementation
  • org.controlsfx:controlsfx 11.1.2 implementation
  • org.fxmisc.flowless:flowless 0.7.0 implementation
  • org.fxmisc.richtext:richtextfx 0.11.0 implementation
  • org.jabref:afterburner.fx 1.1.0-SNAPSHOT implementation
  • org.jsoup:jsoup 1.16.1 implementation
  • org.kordamp.ikonli:ikonli-javafx 12.3.1 implementation
  • org.kordamp.ikonli:ikonli-materialdesign2-pack 12.3.1 implementation
  • org.libreoffice:libreoffice 7.5.1 implementation
  • org.libreoffice:unoloader 7.5.1 implementation
  • org.postgresql:postgresql 42.6.0 implementation
  • org.slf4j:slf4j-api 2.0.7 implementation
  • org.tinylog:slf4j-tinylog 2.6.1 implementation
  • org.tinylog:tinylog-api 2.6.1 implementation
  • org.tinylog:tinylog-impl 2.6.1 implementation
  • com.tngtech.archunit:archunit-junit5-api 1.0.1 testImplementation
  • io.github.classgraph:classgraph 4.8.157 testImplementation
  • org.hamcrest:hamcrest-library 2.2 testImplementation
  • org.junit.jupiter:junit-jupiter 5.9.3 testImplementation
  • org.junit.platform:junit-platform-launcher 1.9.3 testImplementation
  • org.mockito:mockito-core 5.3.1 testImplementation
  • org.testfx:testfx-core 4.0.16-alpha testImplementation
  • org.testfx:testfx-junit5 4.0.16-alpha testImplementation
  • org.xmlunit:xmlunit-core 2.9.1 testImplementation
  • org.xmlunit:xmlunit-matchers 2.9.1 testImplementation
  • com.tngtech.archunit:archunit-junit5-engine 1.0.1 testRuntimeOnly
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildSrc/build.gradle maven
  • com.h2database:h2-mvstore 2.1.214 implementation
  • org.apache.commons:commons-csv 1.10.0 implementation
  • org.slf4j:slf4j-api 2.0.7 implementation
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore-parent/pom.xml maven
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.basic/pom.xml maven
  • com.thoughtworks.xstream:xstream 1.4.8
  • javax.ejb:javax.ejb-api 3.2.2
  • org.apache.commons:commons-io 1.3.2
  • org.apache.commons:commons-lang3 3.0
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.audiowatermarking/pom.xml maven
  • ${project.groupId}:mediastore.ejb.audiowatermarking ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.cache/pom.xml maven
  • ${project.groupId}:mediastore.ejb.cache ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.facade/pom.xml maven
  • org.palladiosimulator.mediastore:mediastore.ejb.facade 0.0.1-SNAPSHOT
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.mediaaccess/pom.xml maven
  • ${project.groupId}:mediastore.ejb.mediaaccess ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.mediamanagement/pom.xml maven
  • ${project.groupId}:mediastore.ejb.mediamanagement ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.packaging/pom.xml maven
  • ${project.groupId}:mediastore.ejb.packaging ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.reencoder/pom.xml maven
  • ${project.groupId}:mediastore.ejb.reencoder ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.tagwatermarking/pom.xml maven
  • ${project.groupId}:mediastore.ejb.tagwatermarking ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.userdbadapter/pom.xml maven
  • ${project.groupId}:mediastore.ejb.userdbadapter ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ear.usermanagement/pom.xml maven
  • ${project.groupId}:mediastore.ejb.usermanagement ${project.version}
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.audiowatermarking/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • commons-io:commons-io 2.4
  • javax.annotation:javax.annotation-api 1.3.2
  • javax.ejb:javax.ejb-api 3.2.2
  • org.apache.commons:commons-lang3 3.0
  • org:jaudiotagger 2.0.3
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.cache/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • com.google.guava:guava 18.0
  • javax.annotation:javax.annotation-api 1.3.2
  • javax.ejb:javax.ejb-api 3.2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.facade/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.ejb:javax.ejb-api 3.2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.mediaaccess/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • commons-io:commons-io 2.4
  • javax.ejb:javax.ejb-api 3.2.2
  • javax.persistence:javax.persistence-api 2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.mediamanagement/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.ejb:javax.ejb-api 3.2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.packaging/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.ejb:javax.ejb-api 3.2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.reencoder/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • commons-io:commons-io 2.4
  • javax.annotation:javax.annotation-api 1.3.2
  • javax.ejb:javax.ejb-api 3.2.2
  • org.apache.commons:commons-lang3 3.0
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.tagwatermarking/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.annotation:javax.annotation-api 1.3.2
  • javax.ejb:javax.ejb-api 3.2.2
  • org:jaudiotagger 2.0.3
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.userdbadapter/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.ejb:javax.ejb-api 3.2.2
  • javax.persistence:javax.persistence-api 2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.ejb.usermanagement/pom.xml maven
  • ${project.groupId}:mediastore.basic ${project.version}
  • javax.ejb:javax.ejb-api 3.2.2
LiSSA-RATLR-V1/evaluation/mediastore/datasets/MediaStore/model_2016/code/Implementation/mediastore.web/pom.xml maven
  • javax.faces:javax.faces-api 2.3 provided
  • javax.servlet:javax.servlet-api 4.0.1 provided
  • commons-fileupload:commons-fileupload 1.3.1
  • javax.annotation:javax.annotation-api 1.3.2
  • org.palladiosimulator.mediastore:mediastore.basic 0.0.1-SNAPSHOT
  • org.primefaces.themes:redmond 1.0.10
  • org.primefaces:primefaces 5.1
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/build.gradle maven
  • com.google.auth:google-auth-library-oauth2-http 1.8.1 implementation
  • com.google.cloud:google-cloud-datastore * implementation
  • com.google.cloud:google-cloud-logging * implementation
  • com.google.cloud:google-cloud-tasks * implementation
  • com.google.code.gson:gson 2.9.0 implementation
  • com.google.firebase:firebase-admin 9.1.1 implementation
  • com.google.guava:guava 31.1-jre implementation
  • com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer 20220608.1 implementation
  • com.helger:ph-commons 9.5.5 implementation
  • com.mailjet:mailjet-client 5.2.0 implementation
  • com.sendgrid:sendgrid-java 4.9.3 implementation
  • com.sun.jersey.contribs:jersey-multipart 1.19.4 implementation
  • com.sun.jersey:jersey-client 1.19.4 implementation
  • com.sun.jersey:jersey-core 1.19.4 implementation
  • org.apache.solr:solr-solrj 8.11.1 implementation
  • org.eclipse.jetty:jetty-annotations * implementation
  • org.eclipse.jetty:jetty-server * implementation
  • org.eclipse.jetty:jetty-slf4j-impl * implementation
  • org.eclipse.jetty:jetty-webapp * implementation
  • org.jsoup:jsoup 1.15.2 implementation
  • com.deque.html.axe-core:selenium 4.6.0 testImplementation
  • com.google.apis:google-api-services-gmail v1-rev20220404-1.32.1 testImplementation
  • com.google.oauth-client:google-oauth-client-jetty 1.34.1 testImplementation
  • com.tngtech.archunit:archunit 0.11.0 testImplementation
  • junit:junit 4.13.2 testImplementation
  • org.apache.jmeter:ApacheJMeter_core 5.5 testImplementation
  • org.apache.jmeter:ApacheJMeter_http 5.5 testImplementation
  • org.seleniumhq.selenium:selenium-java 4.3.0 testImplementation
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/interfaces/tools.descartes.teastore.entities/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • net.kieker-monitoring:kieker 1.15
  • org.slf4j:slf4j-api 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • junit:junit 4.13.1 test
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/pom.xml maven
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.auth/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.activation:jakarta.activation-api 2.0.1
  • org.mindrot:jbcrypt 0.4
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
  • tools.descartes.teastore:registryclient ${teastoreversion}
  • junit:junit 4.13.1 test
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.image/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.activation:jakarta.activation-api 2.0.1
  • org.slf4j:slf4j-api 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
  • tools.descartes.teastore:registryclient ${teastoreversion}
  • junit:junit 4.13.1 test
  • org.mockito:mockito-core 3.11.1 test
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.persistence/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.activation:jakarta.activation-api 2.0.1
  • jakarta.persistence:jakarta.persistence-api 3.0.0
  • org.eclipse.persistence:eclipselink 3.0.1
  • org.hsqldb:hsqldb 2.6.0
  • org.mindrot:jbcrypt 0.4
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
  • tools.descartes.teastore:registryclient ${teastoreversion}
  • junit:junit 4.13.1 test
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.recommender/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.activation:jakarta.activation-api 2.0.1
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
  • tools.descartes.teastore:registryclient ${teastoreversion}
  • junit:junit 4.13.1 test
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.registry/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.activation:jakarta.activation-api 2.0.1
  • org.glassfish.jersey.containers:jersey-container-servlet 3.0.2
  • org.glassfish.jersey.core:jersey-server 3.0.2
  • org.glassfish.jersey.inject:jersey-hk2 3.0.2
  • org.glassfish.jersey.media:jersey-media-json-jackson 3.0.2
  • org.slf4j:slf4j-api 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • tools.descartes.teastore:entities ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/services/tools.descartes.teastore.webui/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api 2.0.0
  • org.glassfish.web:jakarta.servlet.jsp.jstl 2.0.0
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
  • tools.descartes.teastore:registryclient ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.docker.all/pom.xml maven
  • tools.descartes.teastore:auth ${teastoreversion}
  • tools.descartes.teastore:image ${teastoreversion}
  • tools.descartes.teastore:persistence ${teastoreversion}
  • tools.descartes.teastore:recommender ${teastoreversion}
  • tools.descartes.teastore:registry ${teastoreversion}
  • tools.descartes.teastore:webui ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.dockerbase/pom.xml maven
  • tools.descartes.teastore:dockermemoryconfigurator ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.dockermemoryconfigurator/pom.xml maven
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.kieker.probes/pom.xml maven
  • net.kieker-monitoring:kieker 1.15
  • tools.descartes.teastore:entities ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.kieker.rabbitmq/pom.xml maven
  • javax:javaee-api 7.0 provided
  • com.google.guava:guava 29.0-jre
  • com.rabbitmq:amqp-client 4.2.1
  • log4j:log4j 1.2.17
  • net.kieker-monitoring:kieker 1.14
  • org.slf4j:slf4j-jdk14 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • tools.descartes.teastore:kieker.probes ${teastoreversion}
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/utilities/tools.descartes.teastore.registryclient/pom.xml maven
  • jakarta.platform:jakarta.jakartaee-api 9.0.0 provided
  • com.netflix.ribbon:ribbon-archaius 2.7.18
  • com.netflix.ribbon:ribbon-core 2.7.18
  • com.netflix.ribbon:ribbon-loadbalancer 2.7.18
  • io.jaegertracing:jaeger-client 0.32.0
  • io.reactivex:rxjava 1.3.4
  • net.kieker-monitoring:kieker 1.15
  • org.glassfish.jersey.connectors:jersey-grizzly-connector 3.0.2
  • org.glassfish.jersey.containers:jersey-container-servlet 3.0.2
  • org.glassfish.jersey.core:jersey-server 3.0.2
  • org.glassfish.jersey.inject:jersey-hk2 3.0.2
  • org.glassfish.jersey.media:jersey-media-json-jackson 3.0.2
  • org.slf4j:slf4j-api 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • tools.descartes.teastore:entities ${teastoreversion}
LiSSA-RATLR-V1/lissa/pom.xml maven
  • com.fasterxml.jackson.core:jackson-core 2.17.1
  • com.fasterxml.jackson.core:jackson-databind 2.17.1
  • com.knuddels:jtokkit 1.0.0
  • dev.langchain4j:langchain4j 0.31.0
  • dev.langchain4j:langchain4j-core 0.31.0
  • dev.langchain4j:langchain4j-ollama 0.31.0
  • dev.langchain4j:langchain4j-open-ai 0.31.0
  • info.picocli:picocli 4.7.6
  • io.github.ardoco.tlr:model-provider 1.0.0
  • io.github.bonede:tree-sitter 0.22.6
  • io.github.bonede:tree-sitter-java 0.21.0a
  • io.github.cdimascio:dotenv-java 3.0.0
  • org.slf4j:slf4j-api 2.0.13
  • org.slf4j:slf4j-simple 2.0.13
  • com.tngtech.archunit:archunit-junit5 1.3.0 test
  • org.junit.jupiter:junit-jupiter-api 5.11.0-M1 test
  • org.junit.jupiter:junit-jupiter-engine 5.11.0-M1 test
LiSSA-RATLR-V2/lissa/pom.xml maven
  • io.soabase.record-builder:record-builder-processor 42 provided
  • com.fasterxml.jackson.core:jackson-core
  • com.fasterxml.jackson.core:jackson-databind
  • com.knuddels:jtokkit 1.1.0
  • dev.langchain4j:langchain4j 0.33.0
  • dev.langchain4j:langchain4j-core 0.33.0
  • dev.langchain4j:langchain4j-embeddings 0.33.0
  • dev.langchain4j:langchain4j-ollama 0.33.0
  • dev.langchain4j:langchain4j-open-ai 0.33.0
  • info.picocli:picocli 4.7.6
  • io.github.ardoco.tlr:model-provider 1.0.0
  • io.github.ardoco:metrics 0.1.1
  • io.github.bonede:tree-sitter 0.22.6a
  • io.github.bonede:tree-sitter-java 0.21.0a
  • io.github.cdimascio:dotenv-java 3.0.0
  • org.slf4j:slf4j-simple
  • com.tngtech.archunit:archunit-junit5 1.3.0 test
  • org.junit.jupiter:junit-jupiter-engine ${junit.version} test
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-export-annotations/package-lock.json npm
  • 128 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-export-annotations/package.json npm
  • eslint ^8.20.0 development
  • eslint-config-google ^0.14.0 development
  • axios ^0.26.0
  • form-data ^4.0.0
  • lodash ^4.17.21
  • perfect-freehand ^1.0.16
  • probe-image-size ^7.2.3
  • redis ^4.0.3
  • sanitize-filename ^1.6.3
  • xmlbuilder2 ^3.0.2
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-client-test/package-lock.json npm
  • 1211 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-client-test/package.json npm
  • @apollo/client ^3.7.1
  • @testing-library/jest-dom ^5.16.5
  • @testing-library/react ^13.4.0
  • @testing-library/user-event ^13.5.0
  • graphql ^16.6.0
  • graphql-ws ^5.11.2
  • react ^18.2.0
  • react-dom ^18.2.0
  • react-scripts 5.0.1
  • subscriptions-transport-ws ^0.11.0
  • web-vitals ^2.1.4
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-middleware/demo/client/package-lock.json npm
  • ws 8.13.0
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-graphql-middleware/demo/client/package.json npm
  • ws ^8.13.0
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-learning-dashboard/package-lock.json npm
  • 1198 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bbb-learning-dashboard/package.json npm
  • @babel/core ^7.15.0 development
  • autoprefixer ^10.4.1 development
  • eslint ^7.32.0 development
  • eslint-config-airbnb ^18.2.1 development
  • eslint-config-airbnb-base ^14.2.1 development
  • eslint-plugin-import ^2.23.4 development
  • eslint-plugin-jsx-a11y ^6.4.1 development
  • eslint-plugin-react ^7.24.0 development
  • eslint-plugin-react-hooks ^4.2.0 development
  • postcss ^8.4.5 development
  • tailwindcss ^3.0.11 development
  • @emotion/react ^11.10.5
  • @emotion/styled ^11.10.5
  • @mui/material ^5.10.13
  • @mui/x-data-grid ^5.17.10
  • react ^17.0.2
  • react-dom ^17.0.2
  • react-intl ^5.20.6
  • react-scripts ^5.0.0
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-html5/package-lock.json npm
  • 746 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-html5/package.json npm
  • chai ~4.2.0 development
  • eslint ^7.32.0 development
  • eslint-config-airbnb ^18.2.1 development
  • eslint-config-airbnb-base ^14.2.1 development
  • eslint-plugin-import ^2.26.0 development
  • eslint-plugin-jsx-a11y ^6.5.1 development
  • eslint-plugin-react ^7.29.4 development
  • eslint-plugin-react-hooks ^4.4.0 development
  • husky ^1.3.1 development
  • lint-staged 11.2.0 development
  • sha1 ^1.1.1 development
  • @apollo/client ^3.7.10
  • @babel/runtime ^7.17.9
  • @browser-bunyan/server-stream ^1.8.0
  • @jitsi/sdp-interop 0.1.14
  • @material-ui/core ^4.12.4
  • @mconf/bbb-diff ^1.2.0
  • @tldraw/tldraw ^1.27.0
  • autoprefixer ^10.4.4
  • axios ^0.21.3
  • babel-runtime ~6.26.0
  • bowser ^2.11.0
  • browser-bunyan ^1.8.0
  • classnames ^2.2.6
  • darkreader ^4.9.46
  • emoji-mart ^3.0.1
  • eventemitter2 ~6.4.6
  • fastdom ^1.0.10
  • fibers ^4.0.2
  • flat ^5.0.2
  • graphql ^16.6.0
  • hark ^1.2.3
  • html-to-image ^1.9.0
  • immutability-helper ~2.8.1
  • langmap 0.0.16
  • makeup-screenreader-trap 0.0.5
  • meteor-node-stubs ^1.2.1
  • mobx 6.4.2
  • postcss-nested ^5.0.6
  • probe-image-size ^7.2.3
  • prom-client ^13.2.0
  • prop-types ^15.8.1
  • queue ^6.0.2
  • radash ^10.7.0
  • re-resizable ^4.11.0
  • react ^17.0.2
  • react-autosize-textarea ^5.0.1
  • react-colorful ^5.6.1
  • react-dom ^17.0.2
  • react-draggable ^4.4.5
  • react-dropzone ^7.0.1
  • react-intl ^6.1.0
  • react-loading-skeleton ^3.0.3
  • react-modal ^3.15.1
  • react-player ^2.10.0
  • react-tabs ^4.2.1
  • react-tether ^2.0.7
  • react-toastify ^4.5.2
  • react-toggle ^4.1.2
  • react-transition-group ^2.9.0
  • react-virtualized ^9.22.4
  • reconnecting-websocket ~v4.4.0
  • redis ^3.1.2
  • sanitize-html 2.7.1
  • scheduler ^0.20.2
  • sdp-transform 2.7.0
  • smile2emoji ^2.8.0
  • string-hash ~1.1.3
  • styled-components ^5.3.3
  • subscriptions-transport-ws ^0.11.0
  • tippy.js ^5.1.3
  • use-context-selector ^1.3.7
  • wasm-check ^2.0.3
  • webrtc-adapter ^8.1.1
  • winston ^3.7.2
  • yaml ^2.2.2
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-tests/playwright/package-lock.json npm
  • @playwright/test 1.28.1
  • @types/node 18.11.15
  • ansi-styles 4.3.0
  • asynckit 0.4.0
  • available-typed-arrays 1.0.5
  • axios 1.2.1
  • call-bind 1.0.2
  • chalk 4.1.2
  • charenc 0.0.2
  • color-convert 2.0.1
  • color-name 1.1.4
  • combined-stream 1.0.8
  • crypt 0.0.2
  • deep-equal 2.2.0
  • define-properties 1.2.0
  • delayed-stream 1.0.0
  • dotenv 16.0.3
  • es-get-iterator 1.1.3
  • follow-redirects 1.15.2
  • for-each 0.3.3
  • form-data 4.0.0
  • function-bind 1.1.1
  • functions-have-names 1.2.3
  • get-intrinsic 1.2.0
  • gopd 1.0.1
  • has 1.0.3
  • has-bigints 1.0.2
  • has-flag 4.0.0
  • has-property-descriptors 1.0.0
  • has-symbols 1.0.3
  • has-tostringtag 1.0.0
  • internal-slot 1.0.5
  • is-arguments 1.1.1
  • is-array-buffer 3.0.2
  • is-bigint 1.0.4
  • is-boolean-object 1.1.2
  • is-callable 1.2.7
  • is-date-object 1.0.5
  • is-map 2.0.2
  • is-number-object 1.0.7
  • is-regex 1.1.4
  • is-set 2.0.2
  • is-shared-array-buffer 1.0.2
  • is-string 1.0.7
  • is-symbol 1.0.4
  • is-typed-array 1.1.10
  • is-weakmap 2.0.1
  • is-weakset 2.0.2
  • isarray 2.0.5
  • mime-db 1.52.0
  • mime-types 2.1.35
  • object-inspect 1.12.3
  • object-is 1.1.5
  • object-keys 1.1.1
  • object.assign 4.1.4
  • playwright 1.28.1
  • playwright-core 1.28.1
  • proxy-from-env 1.1.0
  • regexp.prototype.flags 1.4.3
  • sax 1.2.4
  • sha1 1.1.1
  • side-channel 1.0.4
  • stop-iteration-iterator 1.0.0
  • supports-color 7.2.0
  • which-boxed-primitive 1.0.2
  • which-collection 1.0.1
  • which-typed-array 1.1.9
  • xml2js 0.4.23
  • xmlbuilder 11.0.1
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-tests/playwright/package.json npm
  • @playwright/test ^1.28.1
  • axios ^1.2.0
  • chalk ^4.1.2
  • deep-equal ^2.2.0
  • dotenv ^16.0.0
  • playwright ^1.28.1
  • sha1 ^1.1.1
  • xml2js ^0.4.23
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-tests/puppeteer/package-lock.json npm
  • 375 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/bigbluebutton-tests/puppeteer/package.json npm
  • clipboardy ^3.0.0 development
  • axios ^0.26.1
  • babel-jest ^27.5.1
  • child_process ^1.0.2
  • dotenv ^16.0.1
  • fs-extra ^10.0.1
  • jest ^27.5.1
  • jest-image-snapshot ^4.5.1
  • js-yaml ^4.1.0
  • moment ^2.29.1
  • puppeteer-mass-screenshots ^1.0.15
  • puppeteer-video-recorder ^1.0.5
  • sha1 ^1.1.1
  • sleep-promise 9.1.0
  • yaml ^1.10.2
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/docs/package-lock.json npm
  • 1021 dependencies
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/docs/package.json npm
  • @docusaurus/module-type-aliases ^2.2.0 development
  • @tsconfig/docusaurus ^1.0.6 development
  • typescript ^4.9.4 development
  • @cmfcmf/docusaurus-search-local ^0.11.0
  • @docusaurus/core 2.2.0
  • @docusaurus/plugin-client-redirects 2.2.0
  • @docusaurus/preset-classic 2.2.0
  • @mdx-js/react ^1.6.22
  • clsx ^1.2.1
  • prism-react-renderer ^1.3.5
  • react ^17.0.2
  • react-dom ^17.0.2
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/docs/yarn.lock npm
  • 1031 dependencies
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/docs/package-lock.json npm
  • 383 dependencies
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/docs/package.json npm
  • markbind-cli ^3.1.1 development
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/package-lock.json npm
  • 1483 dependencies
LiSSA-RATLR-V1/evaluation/teammates/datasets/teammates/model_2023/code/package.json npm
  • @angular-builders/jest ^14.1.0 development
  • @angular-devkit/build-angular ^14.2.10 development
  • @angular-eslint/builder ^14.4.0 development
  • @angular-eslint/eslint-plugin ^14.4.0 development
  • @angular-eslint/eslint-plugin-template ^14.4.0 development
  • @angular-eslint/schematics ^14.4.0 development
  • @angular-eslint/template-parser ^14.4.0 development
  • @angular/cli ^14.2.10 development
  • @angular/compiler-cli ^14.2.12 development
  • @types/d3 ^7.4.0 development
  • @types/jest ^28.1.8 development
  • @typescript-eslint/eslint-plugin ^5.52.0 development
  • @typescript-eslint/parser ^5.52.0 development
  • eslint ^8.34.0 development
  • eslint-config-airbnb-base ^15.0.0 development
  • eslint-config-airbnb-typescript ^17.0.0 development
  • eslint-plugin-deprecation ^1.3.3 development
  • eslint-plugin-import ^2.26.0 development
  • eslint-plugin-jest ^27.2.1 development
  • eslint-plugin-jsdoc ^40.0.0 development
  • eslint-plugin-rxjs ^5.0.2 development
  • jest ^28.1.3 development
  • lintspaces-cli ^0.7.1 development
  • npm-run-all ^4.1.5 development
  • postcss ^8.4.21 development
  • rimraf ^4.1.2 development
  • run-script-os ^1.1.6 development
  • stylelint ^13.13.1 development
  • stylelint-config-standard ^22.0.0 development
  • typescript ~4.7.4 development
  • webpack-bundle-analyzer ^4.8.0 development
  • @angular/animations ^14.2.12
  • @angular/cdk ^14.2.7
  • @angular/common ^14.2.12
  • @angular/compiler ^14.2.12
  • @angular/core ^14.2.12
  • @angular/fire ^7.5.0
  • @angular/forms ^14.2.12
  • @angular/localize ^14.2.12
  • @angular/platform-browser ^14.2.12
  • @angular/platform-browser-dynamic ^14.2.12
  • @angular/pwa ^14.2.10
  • @angular/router ^14.2.12
  • @angular/service-worker ^14.2.12
  • @handsontable/angular ^12.3.1
  • @ng-bootstrap/ng-bootstrap ^13.1.1
  • @popperjs/core ~2.10.2
  • @tinymce/tinymce-angular ^7.0.0
  • d3 ^7.8.2
  • file-saver ^2.0.5
  • firebase ^9.17.2
  • handsontable ^12.3.1
  • intersection-observer ^0.12.2
  • moment-timezone ^0.5.40
  • ng-dynamic-component ^10.6.1
  • ng-in-viewport ^6.1.5
  • ngx-captcha ^12.0.2
  • ngx-page-scroll-core ^9.0.0
  • rxjs ~7.5.7
  • tslib ^2.5.0
  • ua-parser-js ^0.7.33
  • zone.js ~0.11.8
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/e2e-tests/package-lock.json npm
  • 170 dependencies
LiSSA-RATLR-V1/evaluation/teastore/datasets/TeaStore/model_2022/code/e2e-tests/package.json npm
  • cypress ^8.3.0
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-locales/composer.json packagist
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-styles/composer.json packagist
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/record-and-playback/pyproject.toml pypi
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/record-and-playback/core/Gemfile rubygems
  • absolute_time ~> 1.0
  • bbbevents ~> 1.2
  • builder ~> 3.2
  • fastimage ~> 2.1
  • java_properties >= 0
  • journald-logger ~> 3.0
  • jwt ~> 2.2
  • locale ~> 2.1
  • loofah ~> 2.19.1
  • minitest ~> 5.14.1
  • nokogiri ~> 1.13.10, >= 1.13.10
  • open4 ~> 1.3
  • optimist >= 0
  • rake >= 12.3, < 14
  • rb-inotify ~> 0.10
  • redis ~> 4.1
  • resque ~> 2.4
  • rubocop ~> 1.31.1
  • rubyzip ~> 2.0
  • tzinfo >= 1.2.10
LiSSA-RATLR-V1/evaluation/bigbluebutton/datasets/bigbluebutton/model_2023/code/record-and-playback/core/Gemfile.lock rubygems
  • absolute_time 1.0.0
  • activesupport 5.2.8.1
  • ast 2.4.2
  • bbbevents 1.2.0
  • builder 3.2.4
  • bundler 2.1.4
  • concurrent-ruby 1.1.10
  • crass 1.0.6
  • fastimage 2.2.6
  • ffi 1.15.5
  • i18n 1.12.0
  • java_properties 0.0.4
  • journald-logger 3.1.0
  • journald-native 1.0.12
  • json 2.6.3
  • jwt 2.5.0
  • locale 2.1.3
  • loofah 2.19.1
  • mini_portile2 2.8.0
  • minitest 5.14.4
  • mono_logger 1.1.1
  • multi_json 1.15.0
  • mustermann 3.0.0
  • nokogiri 1.13.10
  • open4 1.3.4
  • optimist 3.0.1
  • parallel 1.22.1
  • parser 3.1.3.0
  • racc 1.6.1
  • rack 3.0.0
  • rack-protection 3.0.4
  • rainbow 3.1.1
  • rake 13.0.6
  • rb-inotify 0.10.1
  • redis 4.8.0
  • redis-namespace 1.9.0
  • regexp_parser 2.6.1
  • resque 2.4.0
  • rexml 3.2.5
  • rubocop 1.31.2
  • rubocop-ast 1.24.0
  • ruby-progressbar 1.11.0
  • ruby2_keywords 0.0.5
  • rubyzip 2.3.2
  • sinatra 3.0.4
  • thread_safe 0.3.6
  • tilt 2.0.11
  • tzinfo 1.2.10
  • unicode-display_width 2.3.0
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-locales/Gemfile rubygems
  • csl ~> 2.0
  • fuubar >= 0
  • nokogiri >= 0
  • rake >= 0
  • rspec >= 0
  • sheldon >= 0
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-locales/Gemfile.lock rubygems
  • addressable 2.8.0
  • bundler 2.2.32
  • citeproc 1.0.10
  • citeproc-ruby 2.0.0
  • csl 2.0.0
  • csl-styles 2.0.0
  • diff-lcs 1.5.0
  • diffy 3.4.2
  • dotenv 2.7.6
  • erubis 2.7.0
  • faraday 1.8.0
  • faraday-em_http 1.0.0
  • faraday-em_synchrony 1.0.0
  • faraday-excon 1.1.0
  • faraday-httpclient 1.0.1
  • faraday-net_http 1.0.1
  • faraday-net_http_persistent 1.2.0
  • faraday-patron 1.0.0
  • faraday-rack 1.0.0
  • faraday_middleware 1.2.0
  • fuubar 2.5.1
  • git_diff 0.4.3
  • hashdiff 0.3.7
  • mini_portile2 2.8.1
  • multipart-post 2.1.1
  • namae 1.1.1
  • nokogiri 1.13.10
  • octokit 4.21.0
  • ostruct 0.5.2
  • public_suffix 4.0.6
  • racc 1.6.2
  • rake 13.0.6
  • reverse_markdown 2.1.1
  • rexml 3.2.5
  • rspec 3.10.0
  • rspec-core 3.10.1
  • rspec-expectations 3.10.1
  • rspec-mocks 3.10.2
  • rspec-support 3.10.3
  • ruby-progressbar 1.11.0
  • ruby2_keywords 0.0.5
  • sawyer 0.8.2
  • sheldon 1.0.31
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-styles/Gemfile rubygems
  • csl ~> 2.0
  • fuubar >= 0
  • nokogiri >= 0
  • rake >= 0
  • rspec >= 0
  • sheldon >= 0
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/buildres/csl/csl-styles/Gemfile.lock rubygems
  • addressable 2.8.0
  • bundler 2.2.32
  • citeproc 1.0.10
  • citeproc-ruby 2.0.0
  • csl 2.0.0
  • csl-styles 2.0.0
  • diff-lcs 1.5.0
  • diffy 3.4.2
  • dotenv 2.7.6
  • erubis 2.7.0
  • faraday 1.8.0
  • faraday-em_http 1.0.0
  • faraday-em_synchrony 1.0.0
  • faraday-excon 1.1.0
  • faraday-httpclient 1.0.1
  • faraday-net_http 1.0.1
  • faraday-net_http_persistent 1.2.0
  • faraday-patron 1.0.0
  • faraday-rack 1.0.0
  • faraday_middleware 1.2.0
  • fuubar 2.5.1
  • git_diff 0.4.3
  • hashdiff 0.3.7
  • mini_portile2 2.8.1
  • multipart-post 2.1.1
  • namae 1.1.1
  • nokogiri 1.14.3
  • octokit 4.21.0
  • ostruct 0.5.2
  • public_suffix 4.0.6
  • racc 1.6.2
  • rake 13.0.6
  • reverse_markdown 2.1.1
  • rexml 3.2.5
  • rspec 3.10.0
  • rspec-core 3.10.1
  • rspec-expectations 3.10.1
  • rspec-mocks 3.10.2
  • rspec-support 3.10.3
  • ruby-progressbar 1.11.0
  • ruby2_keywords 0.0.5
  • sawyer 0.8.2
  • sheldon 1.0.31
LiSSA-RATLR-V1/evaluation/jabref/datasets/jabref/model_2023/code/docs/Gemfile rubygems
  • jekyll ~> 4.3
  • jekyll-default-layout >= 0
  • jekyll-figure >= 0
  • jekyll-relative-links >= 0
  • jekyll-remote-theme >= 0
  • jekyll-titles-from-headings >= 0
  • just-the-docs = 0.5.0
LiSSA-RATLR-V2/lissa/datasets/doc2code/bigbluebutton/model_2023/code/bbb-common-web/docker-compose.yml docker
  • postgres ${POSTGRES_VERSION}