Skip to content

Commit 6bd3a8e

Browse files
committed
Upsert and Main sample
1 parent cb4f726 commit 6bd3a8e

1 file changed

Lines changed: 38 additions & 5 deletions

File tree

  • data/semantickernel-data-jdbc

data/semantickernel-data-jdbc/pom.xml

Lines changed: 38 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.semantic-kernel</groupId>
66
<artifactId>semantickernel-parent</artifactId>
7-
<version>1.4.4-RC2-SNAPSHOT</version>
7+
<version>1.4.4-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

@@ -14,12 +14,13 @@
1414

1515
<dependencies>
1616
<dependency>
17-
<groupId>org.slf4j</groupId>
18-
<artifactId>slf4j-api</artifactId>
17+
<groupId>com.microsoft.semantic-kernel</groupId>
18+
<artifactId>semantickernel-api</artifactId>
1919
</dependency>
20+
2021
<dependency>
21-
<groupId>com.microsoft.semantic-kernel</groupId>
22-
<artifactId>semantickernel-api-data</artifactId>
22+
<groupId>org.slf4j</groupId>
23+
<artifactId>slf4j-api</artifactId>
2324
</dependency>
2425
<dependency>
2526
<groupId>com.fasterxml.jackson.core</groupId>
@@ -31,9 +32,41 @@
3132
<artifactId>jackson-core</artifactId>
3233
<scope>compile</scope>
3334
</dependency>
35+
<dependency>
36+
<groupId>com.github.jknack</groupId>
37+
<artifactId>handlebars</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.google.code.findbugs</groupId>
41+
<artifactId>jsr305</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.fasterxml.jackson.dataformat</groupId>
45+
<artifactId>jackson-dataformat-yaml</artifactId>
46+
<scope>compile</scope>
47+
</dependency>
3448
<dependency>
3549
<groupId>com.github.spotbugs</groupId>
3650
<artifactId>spotbugs-annotations</artifactId>
3751
</dependency>
52+
<dependency>
53+
<groupId>org.apache.commons</groupId>
54+
<artifactId>commons-text</artifactId>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.postgresql</groupId>
58+
<artifactId>postgresql</artifactId>
59+
<version>42.7.4</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.xerial</groupId>
63+
<artifactId>sqlite-jdbc</artifactId>
64+
<version>3.47.0.0</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>com.oracle.database.jdbc</groupId>
68+
<artifactId>ojdbc11</artifactId>
69+
<version>23.7.0.25.01</version>
70+
</dependency>
3871
</dependencies>
3972
</project>

0 commit comments

Comments
 (0)