Skip to content

Commit

Permalink
Fix java docs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcheng1982 committed Apr 15, 2024
1 parent ed93a4a commit c68e368
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 15 deletions.
12 changes: 2 additions & 10 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</parent>

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

<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
Expand All @@ -32,14 +32,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion launchers/launcher-jdk-http-sync/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>0.0.9</version>
</parent>

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

Expand Down Expand Up @@ -41,6 +41,10 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion launchers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

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

<modules>
Expand Down
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<execution>
<phase>install</phase>
<goals>
<goal>javadoc</goal>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
Expand All @@ -187,6 +187,29 @@
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

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

<modules>
Expand Down
2 changes: 1 addition & 1 deletion tool-builders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

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

0 comments on commit c68e368

Please sign in to comment.