diff --git a/.gitignore b/.gitignore index 6b5b3c6..3477de3 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ out/ !**/src/test/**/out/ .env +target/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..fff08e9 --- /dev/null +++ b/pom.xml @@ -0,0 +1,215 @@ + + 4.0.0 + + dev.surly.ai.collab + spring-ai-collab + 0.0.1 + jar + + + 21 + 21 + 3.3.1 + 1.1.5 + 1.0.0-M1 + UTF-8 + 4.0.0 + 2.6.0 + 4.5.7 + 5.10.0 + 0.64.8 + 1.12.0 + 4.0.1 + 3.0.2 + 3.8.1 + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring.boot.version} + pom + import + + + org.springframework.ai + spring-ai-bom + ${springAiVersion} + pom + import + + + + + + + + org.springframework.ai + spring-ai-openai-spring-boot-starter + + + + org.springframework.ai + spring-ai-pdf-document-reader + + + + + org.apache.pdfbox + pdfbox + ${pdfbox.version} + + + + + org.springframework.boot + spring-boot-devtools + runtime + + + + org.springframework.boot + spring-boot-starter-aop + + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + + org.springframework.boot + spring-boot-starter-web + + + + + org.springdoc + springdoc-openapi-starter-webmvc-ui + ${springdoc-openapi-starter-webmvc-ui.version} + + + + + org.springframework.statemachine + spring-statemachine-core + ${spring-statemachine-core.version} + + + + io.cloudevents + cloudevents-core + ${cloudevents-core.version} + + + + + edu.stanford.nlp + stanford-corenlp + ${edu.stanford.nlp.version} + + + + edu.stanford.nlp + stanford-corenlp + models + ${edu.stanford.nlp.version} + + + + + org.apache.commons + commons-text + ${org.apache.commons.commons-text.version} + + + + + com.vladsch.flexmark + flexmark-html2md-converter + ${flexmark-html2md-converter.version} + + + + + org.projectlombok + lombok + + + + + org.springframework.boot + spring-boot-test + test + + + + org.junit.platform + junit-platform-launcher + test + + + + org.junit.jupiter + junit-jupiter-api + ${junit-jupiter.version} + test + + + + org.junit.jupiter + junit-jupiter-engine + ${junit-jupiter.version} + test + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring.boot.version} + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + io.spring.gradle + dependency-management-plugin + ${spring.dependency.management.version} + + + + + + spring-milestones + Spring Milestones + https://repo.spring.io/milestone + + false + + + + + \ No newline at end of file