|
5 | 5 | <parent> |
6 | 6 | <groupId>org.fuchss</groupId> |
7 | 7 | <artifactId>maven-parent</artifactId> |
8 | | - <version>0.22.5</version> |
| 8 | + <version>0.22.6</version> |
9 | 9 | </parent> |
10 | 10 |
|
11 | | - <groupId>edu.kit.kastel.sdq.lissa</groupId> |
12 | | - <artifactId>ratlr</artifactId> |
13 | | - <version>0.1.0-SNAPSHOT</version> |
| 11 | + <groupId>io.github.ardoco</groupId> |
| 12 | + <artifactId>lissa</artifactId> |
| 13 | + <version>0.2.0-SNAPSHOT</version> |
| 14 | + |
| 15 | + <name>LiSSA - Linking Software System Artifacts</name> |
| 16 | + <description>LiSSA (Linking Software System Artifacts) is an LLM-based approach that aims to be generic across artifact types. The key idea is to use a Large Language Model (LLM) together with information retrieval (IR) to find trace links. For a given source artifact (e.g., a requirement or a sentence in documentation), LiSSA first uses IR techniques to retrieve a small set of potentially relevant target artifacts (code files, model elements, etc.). It then queries the LLM with the retrieved context to generate or suggest the most likely trace link.</description> |
14 | 17 |
|
15 | 18 | <properties> |
16 | 19 | <maven.compiler.source>21</maven.compiler.source> |
17 | 20 | <maven.compiler.target>21</maven.compiler.target> |
18 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 22 | <picocli.version>4.7.7</picocli.version> |
20 | | - <record-builder.version>51</record-builder.version> |
| 23 | + <record-builder.version>52</record-builder.version> |
21 | 24 | <metrics.version>0.1.2</metrics.version> |
22 | 25 | </properties> |
23 | 26 |
|
|
26 | 29 | <dependency> |
27 | 30 | <groupId>dev.langchain4j</groupId> |
28 | 31 | <artifactId>langchain4j-bom</artifactId> |
29 | | - <version>1.9.1</version> |
| 32 | + <version>1.10.0</version> |
30 | 33 | <type>pom</type> |
31 | 34 | <scope>import</scope> |
32 | 35 | </dependency> |
|
93 | 96 | <dependency> |
94 | 97 | <groupId>io.github.bonede</groupId> |
95 | 98 | <artifactId>tree-sitter</artifactId> |
96 | | - <version>0.25.3</version> |
| 99 | + <version>0.26.3</version> |
97 | 100 | </dependency> |
98 | 101 | <dependency> |
99 | 102 | <groupId>io.github.bonede</groupId> |
|
129 | 132 | <dependency> |
130 | 133 | <groupId>redis.clients</groupId> |
131 | 134 | <artifactId>jedis</artifactId> |
132 | | - <version>7.1.0</version> |
| 135 | + <version>7.2.1</version> |
133 | 136 | </dependency> |
134 | 137 | </dependencies> |
135 | 138 | <repositories> |
|
0 commit comments