Skip to content

Commit

Permalink
Merge pull request #2264 from openturing/0.3.10
Browse files Browse the repository at this point in the history
0.3.10
  • Loading branch information
alegauss authored Jan 21, 2025
2 parents 1286589 + ec9519c commit b781851
Show file tree
Hide file tree
Showing 448 changed files with 279 additions and 8,612 deletions.
7 changes: 2 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ ng serve console
## Search
ng serve sn
## Chat bot
ng serve converse
----
=== Docker Compose

Expand Down Expand Up @@ -184,7 +181,7 @@ Turing ES detects Entities of OpenText Blazon Documents using OCR and NLP, gener
[[turing-console]]
== Turing ES Console

Turing ES has many components: Search Engine, NLP, Converse (Chat bot), Semantic Navigation
Turing ES has many components: Search Engine, NLP, Semantic Navigation

[[turing-console-login]]
=== Login
Expand All @@ -200,7 +197,7 @@ image::img/screenshots/turing-login.png[Login]
=== Search Engine

==== Configuration
Search Engine is used by Turing to store and retrieve data of Converse (Chat bot) and Semantic Navigation Sites.
Search Engine is used by Turing to store and retrieve data of Semantic Navigation Sites.

[#img-se]
.Search Engine Page
Expand Down
50 changes: 45 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
<groupId>com.viglet.turing</groupId>
<artifactId>turing</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<version>0.3.10.1</version>
<name>Turing ES Master</name>
<description>Viglet Turing ES</description>

<properties>
<revision>0.3.10</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>3.4.1</spring-boot.version>
Expand Down Expand Up @@ -120,6 +119,7 @@
</property>
</activation>
<modules>
<module>turing-utils</module>
<module>turing-commons</module>
<module>turing-spring</module>
<module>turing-java-sdk</module>
Expand Down Expand Up @@ -191,6 +191,46 @@
<artifactId>turing-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing</groupId>
<artifactId>turing-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>connector-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing</groupId>
<artifactId>db-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing</groupId>
<artifactId>fs-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>wc-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>wc-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>aem-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>sprinklr-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand All @@ -199,7 +239,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20241224</version>
<version>20250107</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -239,7 +279,7 @@
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.47.2.0</version>
<version>3.48.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down Expand Up @@ -279,4 +319,4 @@
<url>https://jitpack.io</url>
</repository>
</repositories>
</project>
</project>
2 changes: 1 addition & 1 deletion turing-aem/aem-cli-indexer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>turing-aem</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>aem-cli-indexer</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion turing-aem/aem-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>turing-aem</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>aem-commons</artifactId>
Expand Down
4 changes: 1 addition & 3 deletions turing-aem/aem-plugin-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
<parent>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>turing-aem</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>aem-plugin-sample</artifactId>
<name>Turing AEM - Sample Plugin</name>
<description>Turing AEM Connector - Sample Plugin</description>
<properties>
<turing.version>0.3.10</turing.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -23,7 +22,6 @@
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>aem-commons</artifactId>
<version>${turing.version}</version>
</dependency>
</dependencies>
<build>
Expand Down
9 changes: 2 additions & 7 deletions turing-aem/aem-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
<parent>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>turing-aem</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>aem-plugin</artifactId>
<version>${revision}</version>
<packaging>jar</packaging>
<name>Turing AEM - Plugin</name>
<description>Turing AEM - Plugin</description>
Expand Down Expand Up @@ -43,7 +42,7 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
<version>2.2.27</version>
<version>2.2.28</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -65,18 +64,14 @@
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>aem-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing</groupId>
<artifactId>turing-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.viglet.turing.connector</groupId>
<artifactId>connector-commons</artifactId>
<version>0.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Expand Down
2 changes: 1 addition & 1 deletion turing-aem/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.viglet.turing</groupId>
<artifactId>turing</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.viglet.turing.connector</groupId>
Expand Down
9 changes: 4 additions & 5 deletions turing-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
<parent>
<groupId>com.viglet.turing</groupId>
<artifactId>turing</artifactId>
<version>${revision}</version>
<version>0.3.10.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>turing-app</artifactId>
<version>${revision}</version>
<name>Turing ES Application</name>
<url>https://github.com/openturing/turing</url>
<packaging>jar</packaging>
Expand Down Expand Up @@ -173,12 +172,12 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.4</version>
<version>42.7.5</version>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>2.5.2</version>
<version>2.5.3</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down Expand Up @@ -243,7 +242,7 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.0</version>
<version>2.8.3</version>
</dependency>
<dependency>
<groupId>com.squins.google.fork.schema-org-client</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
package com.viglet.turing.api.auth;

import com.google.inject.Inject;
import com.viglet.turing.bean.converse.auth.TurCurrentUser;
import com.viglet.turing.bean.TurCurrentUser;
import com.viglet.turing.persistence.model.auth.TurGroup;
import com.viglet.turing.persistence.model.auth.TurUser;
import com.viglet.turing.persistence.repository.auth.TurGroupRepository;
Expand Down
Loading

0 comments on commit b781851

Please sign in to comment.