Skip to content

Commit

Permalink
Java: Add name and desc to pom.xml (#2019)
Browse files Browse the repository at this point in the history
### Motivation and Context

Update pom.xml for Java JDK release.

<!-- Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:
  1. Why is this change required?
  2. What problem does it solve?
  3. What scenario does it contribute to?
  4. If it fixes an open issue, please link to the issue here.
-->

### Description

<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#dev-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄

Co-authored-by: joebraley <[email protected]>
  • Loading branch information
joe-braley and joebraley authored Jul 17, 2023
1 parent bb053c4 commit 283ae31
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 7 deletions.
2 changes: 2 additions & 0 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<version>0.2.6-alpha-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://www.github.com/microsoft/semantic-kernel</url>
<name>Semantic Kernel Parent</name>
<description>Parent pom for the Semantic Kernel Project</description>

<properties>
<azure-ai-openai.version>1.0.0-beta.2</azure-ai-openai.version>
Expand Down
2 changes: 2 additions & 0 deletions java/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<artifactId>samples</artifactId>
<version>0.2.6-alpha-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Semantic Kernel Samples Parent</name>
<description>Parent pom for sample code for using the Semantic Kernel project</description>

<modules>
<module>sample-code</module>
Expand Down
3 changes: 2 additions & 1 deletion java/samples/sample-code/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
</parent>

<artifactId>sample-code</artifactId>

<name>Semantic Kernel Samples</name>
<description>Sample code for using the Semantic Kernel project</description>
<packaging>jar</packaging>

<dependencies>
Expand Down
3 changes: 2 additions & 1 deletion java/semantickernel-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<artifactId>semantickernel-api</artifactId>
<packaging>jar</packaging>

<name>Semantic Kernel API</name>
<description>Defines the public interface for the Semantic Kernel</description>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
Expand Down
3 changes: 2 additions & 1 deletion java/semantickernel-connectors-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

<groupId>com.microsoft.semantic-kernel.connectors</groupId>
<artifactId>semantickernel-connectors-parent</artifactId>

<name>Semantic Kernel Connectors Parent</name>
<description>Parent pom for the Semantic Kernel Connectors</description>
<modules>
<module>semantickernel-connectors</module>
</modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
</parent>

<artifactId>semantickernel-connectors</artifactId>

<name>Semantic Kernel Connectors</name>
<description>Defines common connectors to be used with the Semantic Kernel</description>
<repositories>
<repository>
<id>azure-sdk-for-java</id>
Expand Down
2 changes: 2 additions & 0 deletions java/semantickernel-core-skills/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
</parent>

<artifactId>semantickernel-core-skills</artifactId>
<name>Semantic Kernel Core Skills</name>
<description>Core skills used by the Semantic Kernel</description>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion java/semantickernel-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

<artifactId>semantickernel-core</artifactId>
<packaging>jar</packaging>

<name>Semantic Kernel Core</name>
<description>Implementation of the Semantic Kernel</description>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 2 additions & 0 deletions java/semantickernel-extensions-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

<groupId>com.microsoft.semantic-kernel.extensions</groupId>
<artifactId>semantickernel-extensions-parent</artifactId>
<name>Semantic Kernel Extensions Parent</name>
<description>Parent pom for Semantic Kernel extensions</description>

<modules>
<module>semantickernel-sequentialplanner-extension</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
</parent>

<artifactId>semantickernel-actionplanner-extension</artifactId>

<name>Semantic Kernel Action Planner Extension</name>
<description>Action Planner implementation for Semantic Kernel</description>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
</parent>

<artifactId>semantickernel-sequentialplanner-extension</artifactId>

<name>Semantic Kernel Sequential Planner Extension</name>
<description>Sequential Planner implementation for Semantic Kernel</description>

<dependencies>
<dependency>
Expand Down

0 comments on commit 283ae31

Please sign in to comment.