Skip to content

Commit 25a7317

Browse files
authored
Merge pull request #16 from johnoliver/oracle
Fix packaging to include utils in the API
2 parents ced785b + 9c69a27 commit 25a7317

File tree

25 files changed

+326
-20
lines changed

25 files changed

+326
-20
lines changed

agents/semantickernel-agents-core/pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>com.microsoft.semantic-kernel</groupId>
@@ -18,6 +19,18 @@
1819
<groupId>com.microsoft.semantic-kernel</groupId>
1920
<artifactId>semantickernel-api</artifactId>
2021
</dependency>
22+
<dependency>
23+
<groupId>com.microsoft.semantic-kernel</groupId>
24+
<artifactId>semantickernel-api-builders</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.microsoft.semantic-kernel</groupId>
28+
<artifactId>semantickernel-api-ai-services</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.microsoft.semantic-kernel</groupId>
32+
<artifactId>semantickernel-api-exceptions</artifactId>
33+
</dependency>
2134
</dependencies>
2235

2336
</project>

aiservices/google/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,22 @@
3434
<groupId>com.microsoft.semantic-kernel</groupId>
3535
<artifactId>semantickernel-api</artifactId>
3636
</dependency>
37+
<dependency>
38+
<groupId>com.microsoft.semantic-kernel</groupId>
39+
<artifactId>semantickernel-api-builders</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.microsoft.semantic-kernel</groupId>
43+
<artifactId>semantickernel-api-ai-services</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.microsoft.semantic-kernel</groupId>
47+
<artifactId>semantickernel-api-exceptions</artifactId>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.microsoft.semantic-kernel</groupId>
51+
<artifactId>semantickernel-api-localization</artifactId>
52+
</dependency>
3753

3854
<dependency>
3955
<groupId>com.fasterxml.jackson.core</groupId>

aiservices/huggingface/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@
3131
<groupId>com.microsoft.semantic-kernel</groupId>
3232
<artifactId>semantickernel-api</artifactId>
3333
</dependency>
34+
<dependency>
35+
<groupId>com.microsoft.semantic-kernel</groupId>
36+
<artifactId>semantickernel-api-exceptions</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.microsoft.semantic-kernel</groupId>
40+
<artifactId>semantickernel-api-ai-services</artifactId>
41+
</dependency>
3442
<dependency>
3543
<groupId>com.azure</groupId>
3644
<artifactId>azure-core</artifactId>

aiservices/openai/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,30 @@
1919
<groupId>com.microsoft.semantic-kernel</groupId>
2020
<artifactId>semantickernel-api</artifactId>
2121
</dependency>
22+
<dependency>
23+
<groupId>com.microsoft.semantic-kernel</groupId>
24+
<artifactId>semantickernel-api-data</artifactId>
25+
<scope>provided</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>com.microsoft.semantic-kernel</groupId>
29+
<artifactId>semantickernel-api-exceptions</artifactId>
30+
<scope>provided</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.microsoft.semantic-kernel</groupId>
34+
<artifactId>semantickernel-api-ai-services</artifactId>
35+
<scope>provided</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.microsoft.semantic-kernel</groupId>
39+
<artifactId>semantickernel-api-builders</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.microsoft.semantic-kernel</groupId>
43+
<artifactId>semantickernel-api-textembedding-services</artifactId>
44+
</dependency>
45+
2246
<dependency>
2347
<groupId>com.azure</groupId>
2448
<artifactId>azure-ai-openai</artifactId>

data/semantickernel-data-azureaisearch/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@
2121
<groupId>com.microsoft.semantic-kernel</groupId>
2222
<artifactId>semantickernel-api</artifactId>
2323
</dependency>
24+
<dependency>
25+
<groupId>com.microsoft.semantic-kernel</groupId>
26+
<artifactId>semantickernel-api-data</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.microsoft.semantic-kernel</groupId>
30+
<artifactId>semantickernel-api-exceptions</artifactId>
31+
</dependency>
2432

2533
<dependency>
2634
<groupId>com.azure</groupId>

data/semantickernel-data-hsqldb/pom.xml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>com.microsoft.semantic-kernel</groupId>
8-
<artifactId>semantickernel-parent</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
10-
<relativePath>../../pom.xml</relativePath>
7+
<groupId>com.microsoft.semantic-kernel</groupId>
8+
<artifactId>semantickernel-parent</artifactId>
9+
<version>1.4.4-RC2-SNAPSHOT</version>
10+
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<groupId>com.microsoft.semantic-kernel</groupId>
1414
<artifactId>semantickernel-data-hsqldb</artifactId>
1515
<name>Semantic Kernel HLSQLDB connector</name>
1616
<description>Provides a HLSQLDB connector for the Semantic Kernel</description>
1717

18-
<dependencies>
18+
<dependencies>
1919
<dependency>
2020
<groupId>com.microsoft.semantic-kernel</groupId>
2121
<artifactId>semantickernel-api</artifactId>
@@ -24,6 +24,19 @@
2424
<groupId>com.microsoft.semantic-kernel</groupId>
2525
<artifactId>semantickernel-data-jdbc</artifactId>
2626
</dependency>
27+
<dependency>
28+
<groupId>com.microsoft.semantic-kernel</groupId>
29+
<artifactId>semantickernel-api-exceptions</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.microsoft.semantic-kernel</groupId>
33+
<artifactId>semantickernel-api-data</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.microsoft.semantic-kernel</groupId>
37+
<artifactId>semantickernel-api-builders</artifactId>
38+
</dependency>
39+
2740
<dependency>
2841
<groupId>com.fasterxml.jackson.core</groupId>
2942
<artifactId>jackson-databind</artifactId>

data/semantickernel-data-jdbc/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@
1616
<dependency>
1717
<groupId>com.microsoft.semantic-kernel</groupId>
1818
<artifactId>semantickernel-api-data</artifactId>
19+
<scope>provided</scope>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.microsoft.semantic-kernel</groupId>
23+
<artifactId>semantickernel-api-exceptions</artifactId>
24+
<scope>provided</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.microsoft.semantic-kernel</groupId>
28+
<artifactId>semantickernel-api-builders</artifactId>
29+
<scope>provided</scope>
1930
</dependency>
2031
<dependency>
2132
<groupId>org.slf4j</groupId>

data/semantickernel-data-mysql/pom.xml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>com.microsoft.semantic-kernel</groupId>
8-
<artifactId>semantickernel-parent</artifactId>
9-
<version>1.4.4-RC2-SNAPSHOT</version>
10-
<relativePath>../../pom.xml</relativePath>
7+
<groupId>com.microsoft.semantic-kernel</groupId>
8+
<artifactId>semantickernel-parent</artifactId>
9+
<version>1.4.4-RC2-SNAPSHOT</version>
10+
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<groupId>com.microsoft.semantic-kernel</groupId>
1414
<artifactId>semantickernel-data-mysql</artifactId>
1515
<name>Semantic Kernel MySQL connector</name>
1616
<description>Provides a MySQL connector for the Semantic Kernel</description>
1717

18-
<dependencies>
18+
<dependencies>
1919
<dependency>
2020
<groupId>com.microsoft.semantic-kernel</groupId>
2121
<artifactId>semantickernel-api</artifactId>
@@ -24,6 +24,19 @@
2424
<groupId>com.microsoft.semantic-kernel</groupId>
2525
<artifactId>semantickernel-data-jdbc</artifactId>
2626
</dependency>
27+
<dependency>
28+
<groupId>com.microsoft.semantic-kernel</groupId>
29+
<artifactId>semantickernel-api-data</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.microsoft.semantic-kernel</groupId>
33+
<artifactId>semantickernel-api-exceptions</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.microsoft.semantic-kernel</groupId>
37+
<artifactId>semantickernel-api-builders</artifactId>
38+
</dependency>
39+
2740
<dependency>
2841
<groupId>com.fasterxml.jackson.core</groupId>
2942
<artifactId>jackson-databind</artifactId>

data/semantickernel-data-oracle/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@
2929
</dependencyManagement>
3030

3131
<dependencies>
32+
<dependency>
33+
<groupId>com.microsoft.semantic-kernel</groupId>
34+
<artifactId>semantickernel-api-data</artifactId>
35+
<scope>provided</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.microsoft.semantic-kernel</groupId>
39+
<artifactId>semantickernel-api-exceptions</artifactId>
40+
<scope>provided</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.microsoft.semantic-kernel</groupId>
44+
<artifactId>semantickernel-api-builders</artifactId>
45+
<scope>provided</scope>
46+
</dependency>
3247
<dependency>
3348
<groupId>com.microsoft.semantic-kernel</groupId>
3449
<artifactId>semantickernel-data-jdbc</artifactId>

data/semantickernel-data-postgres/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@
2323
<groupId>com.microsoft.semantic-kernel</groupId>
2424
<artifactId>semantickernel-data-jdbc</artifactId>
2525
</dependency>
26+
<dependency>
27+
<groupId>com.microsoft.semantic-kernel</groupId>
28+
<artifactId>semantickernel-api-exceptions</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.microsoft.semantic-kernel</groupId>
32+
<artifactId>semantickernel-api-data</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.microsoft.semantic-kernel</groupId>
36+
<artifactId>semantickernel-api-builders</artifactId>
37+
</dependency>
38+
2639
<dependency>
2740
<groupId>com.fasterxml.jackson.core</groupId>
2841
<artifactId>jackson-databind</artifactId>

0 commit comments

Comments
 (0)