Skip to content

Commit

Permalink
update maven groupId
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcheng1982 committed May 6, 2024
1 parent a9535e7 commit fd35d55
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 54 deletions.
8 changes: 4 additions & 4 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>llm-agent-builder</artifactId>
<version>0.0.9</version>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-core</artifactId>
<artifactId>core</artifactId>
<name>LLM Agent Runtime Core</name>
<description>LLM Agent Runtime Core</description>

Expand Down Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>spring-ai-dashscope-client</artifactId>
<version>0.6.0</version>
<version>0.8.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import org.springframework.ai.chat.prompt.Prompt

enum class ChatClientObservationDocumentation : ObservationDocumentation {
CHAT_CLIENT_CALL {
override fun getDefaultConvention(): Class<out ObservationConvention<out Observation.Context>>? {
override fun getDefaultConvention(): Class<out ObservationConvention<out Observation.Context>> {
return DefaultChatClientObservationConvention::class.java
}

Expand Down Expand Up @@ -165,7 +165,7 @@ interface ChatClientObservationConvention :
}


class ChatClientRequestObservationContext(val prompt: Prompt) :
class ChatClientRequestObservationContext(prompt: Prompt) :
RequestReplySenderContext<Prompt, ChatResponse>({ _, _, _ ->
run {}
}) {
Expand Down
12 changes: 6 additions & 6 deletions launchers/launcher-jdk-http-sync/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-launchers</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>launchers</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-launcher-jdk-http-sync</artifactId>
<artifactId>launcher-jdk-http-sync</artifactId>
<name>Agent Launcher :: JDK HTTP Sync</name>
<description>Agent Launcher :: JDK HTTP Sync</description>

Expand All @@ -19,8 +19,8 @@

<dependencies>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-core</artifactId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions launchers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>llm-agent-builder</artifactId>
<version>0.0.9</version>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-launchers</artifactId>
<artifactId>launchers</artifactId>
<name>LLM Agent Launchers</name>
<packaging>pom</packaging>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.alexcheng1982</groupId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>llm-agent-builder</artifactId>
<version>0.0.9</version>
<version>0.0.10</version>
<packaging>pom</packaging>
<name>LLM Agent Builder</name>
<modules>
Expand Down
6 changes: 3 additions & 3 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>llm-agent-builder</artifactId>
<version>0.0.9</version>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-spring</artifactId>
<artifactId>spring</artifactId>
<name>LLM Agent Spring Integration</name>
<packaging>pom</packaging>

Expand Down
16 changes: 8 additions & 8 deletions spring/spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-spring-boot-autoconfigure</artifactId>
<artifactId>spring-boot-autoconfigure</artifactId>
<name>Spring Integration :: Spring Boot Autoconfigure</name>
<description>LLM Agent Builder - Spring Boot Autoconfigure</description>

Expand All @@ -32,13 +32,13 @@
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-core</artifactId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring-integration</artifactId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring-integration</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
14 changes: 7 additions & 7 deletions spring/spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-spring-boot-starter</artifactId>
<artifactId>spring-boot-starter</artifactId>
<name>Spring Integration :: Spring Boot Starter</name>
<description>LLM Agent Builder - Spring Boot Starter</description>
<packaging>pom</packaging>

<dependencies>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring-boot-autoconfigure</artifactId>
<version>${project.version}</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>0.0.10</version>
</dependency>
</dependencies>

Expand Down
12 changes: 6 additions & 6 deletions spring/spring-dev/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-spring-dev</artifactId>
<artifactId>spring-dev</artifactId>
<name>Spring Integration :: Dev</name>
<description>LLM Agent Builder - Spring Dev Support</description>

Expand All @@ -32,8 +32,8 @@

<dependencies>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-core</artifactId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
12 changes: 6 additions & 6 deletions spring/spring-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-spring</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>spring</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-spring-integration</artifactId>
<artifactId>spring-integration</artifactId>
<name>Spring Integration :: Library</name>
<description>LLM Agent Builder - Spring Integration Library</description>

Expand Down Expand Up @@ -40,8 +40,8 @@
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-core</artifactId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions tool-builders/openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<artifactId>llm-agent-builder-tool-builders</artifactId>
<version>0.0.9</version>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>tool-builders</artifactId>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-tool-builder-openapi</artifactId>
<artifactId>tool-builder-openapi</artifactId>
<name>Agent Tool Builder :: OpenAPI</name>

<build>
Expand Down
6 changes: 3 additions & 3 deletions tool-builders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.alexcheng1982</groupId>
<groupId>io.github.llmagentbuilder</groupId>
<artifactId>llm-agent-builder</artifactId>
<version>0.0.9</version>
<version>0.0.10</version>
</parent>

<artifactId>llm-agent-builder-tool-builders</artifactId>
<artifactId>tool-builders</artifactId>
<packaging>pom</packaging>
<name>LLM Agent Tool Builders</name>
<modules>
Expand Down

0 comments on commit fd35d55

Please sign in to comment.