Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java: Add MySQL memory connector #3099

Merged
merged 27 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f4b0f6f
Java Semantic Kernel CI (#1193)
Luigi96 Jun 2, 2023
676df77
Java - Add module to allow dependency injection via guice (#1199)
johnoliver Jun 2, 2023
1fb4009
Java: VolatileMemoryStoreTests (#1246)
dsgrieve Jun 2, 2023
842184f
Java Format (#1304)
Luigi96 Jun 2, 2023
033c3af
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jun 7, 2023
a60513c
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jun 20, 2023
d8feb1c
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jun 27, 2023
65d289f
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jun 29, 2023
d763541
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 5, 2023
8d3f710
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 6, 2023
a00d471
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 12, 2023
47c1d9b
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 12, 2023
c96e838
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 12, 2023
d3f89ef
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Jul 18, 2023
2277eb1
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Aug 9, 2023
ebbc282
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Aug 9, 2023
3acf41c
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Aug 10, 2023
6088466
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Aug 17, 2023
3626754
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Aug 29, 2023
d57309c
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Sep 25, 2023
0f77420
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Oct 3, 2023
bd8a8cc
Merge branch 'experimental-java' of https://github.com/microsoft/sema…
milderhc Oct 4, 2023
65bc62d
Add MySQL memory connector
milderhc Oct 9, 2023
ff4bd11
Fix test
milderhc Oct 9, 2023
ddd36f4
Add test with existing database objects
milderhc Oct 9, 2023
780dd49
Remove unnecessary parameter from doesIndexExist
milderhc Oct 9, 2023
30a339a
Update collectionId to collection, and id to key (except for MySQL).
milderhc Oct 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion java/api-test/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,27 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.microsoft.semantic-kernel</groupId>
<artifactId>semantickernel-connectors-memory-jdbc</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.microsoft.semantic-kernel</groupId>
<artifactId>semantickernel-connectors-memory-postgresql</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.microsoft.semantic-kernel</groupId>
<artifactId>semantickernel-connectors-memory-mysql</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
Expand All @@ -91,7 +105,11 @@
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mysql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down
Loading
Loading