-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-info.java
More file actions
43 lines (41 loc) · 2.12 KB
/
module-info.java
File metadata and controls
43 lines (41 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module org.rostilos.codecrow.analysisengine {
requires spring.boot;
requires spring.boot.autoconfigure;
requires spring.beans;
requires spring.context;
requires spring.core;
requires spring.web;
requires spring.data.jpa;
requires spring.tx;
requires org.rostilos.codecrow.core;
requires org.rostilos.codecrow.vcs;
requires org.rostilos.codecrow.analysisapi;
requires codecrow.events;
requires okhttp3;
requires org.slf4j;
requires jakarta.validation;
requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.annotation;
requires jakarta.persistence;
requires kotlin.stdlib;
requires jtokkit;
exports org.rostilos.codecrow.analysisengine.aiclient;
exports org.rostilos.codecrow.analysisengine.config;
exports org.rostilos.codecrow.analysisengine.dto.request.ai;
exports org.rostilos.codecrow.analysisengine.dto.request.processor;
exports org.rostilos.codecrow.analysisengine.dto.request.validation;
exports org.rostilos.codecrow.analysisengine.exception;
exports org.rostilos.codecrow.analysisengine.processor;
exports org.rostilos.codecrow.analysisengine.processor.analysis;
exports org.rostilos.codecrow.analysisengine.service;
exports org.rostilos.codecrow.analysisengine.service.rag;
exports org.rostilos.codecrow.analysisengine.service.vcs;
exports org.rostilos.codecrow.analysisengine.util;
opens org.rostilos.codecrow.analysisengine.aiclient to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.config to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.processor to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.processor.analysis to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.service to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.service.rag to spring.core, spring.beans, spring.context;
opens org.rostilos.codecrow.analysisengine.service.vcs to spring.core, spring.beans, spring.context;
}