Skip to content

Commit ee7167f

Browse files
committed
publish package
1 parent 914a828 commit ee7167f

File tree

8 files changed

+123
-10
lines changed

8 files changed

+123
-10
lines changed

chain-workflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-chain-workflow</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-core</artifactId>

evaluator-optimizer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-evaluator-optimizer</artifactId>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<maven.compiler.source>21</maven.compiler.source>
1919
<maven.compiler.target>21</maven.compiler.target>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21-
<agentic-patterns.version>0.1.0-SNAPSHOT</agentic-patterns.version>
21+
<agentic-patterns.version>0.1.0</agentic-patterns.version>
2222
<spring-ai.version>1.0.0-M5</spring-ai.version>
2323
</properties>
2424

parallelization-workflow/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-parallelization-workflow</artifactId>
@@ -25,7 +25,7 @@
2525
<version>${project.version}</version>
2626
</dependency>
2727
</dependencies>
28-
28+
2929
<build>
3030
<plugins>
3131
<plugin>

pom.xml

Lines changed: 115 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,36 @@
66

77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
<packaging>pom</packaging>
1111
<name>Agentic Patterns</name>
12-
<description>Agentic Patterns</description>
12+
<description>Agentic Patterns implementation using Spring AI</description>
13+
14+
<url>https://github.com/JavaAIDev/agentic-patterns</url>
15+
<licenses>
16+
<license>
17+
<name>The Apache Software License, Version 2.0</name>
18+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19+
</license>
20+
</licenses>
21+
22+
<developers>
23+
<developer>
24+
<name>Fu Cheng</name>
25+
<email>alexcheng1982@gmail.com</email>
26+
</developer>
27+
</developers>
28+
29+
<scm>
30+
<connection>
31+
scm:git:git://github.com/JavaAIDev/agentic-patterns.git
32+
</connection>
33+
<developerConnection>
34+
scm:git:ssh://github.com:JavaAIDev/agentic-patterns.git
35+
</developerConnection>
36+
<url>http://github.com/JavaAIDev/agentic-patterns</url>
37+
</scm>
38+
1339
<modules>
1440
<module>task-execution</module>
1541
<module>core</module>
@@ -53,6 +79,93 @@
5379
</dependency>
5480
</dependencies>
5581

82+
<build>
83+
<pluginManagement>
84+
<plugins>
85+
<plugin>
86+
<groupId>org.sonatype.central</groupId>
87+
<artifactId>central-publishing-maven-plugin</artifactId>
88+
<version>0.4.0</version>
89+
<extensions>true</extensions>
90+
<configuration>
91+
<publishingServerId>ossrh</publishingServerId>
92+
<tokenAuth>true</tokenAuth>
93+
<autoPublish>true</autoPublish>
94+
</configuration>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-source-plugin</artifactId>
99+
<version>2.2.1</version>
100+
<executions>
101+
<execution>
102+
<id>attach-sources</id>
103+
<goals>
104+
<goal>jar-no-fork</goal>
105+
</goals>
106+
</execution>
107+
</executions>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-javadoc-plugin</artifactId>
112+
<version>3.6.3</version>
113+
<executions>
114+
<execution>
115+
<id>attach-javadocs</id>
116+
<goals>
117+
<goal>jar</goal>
118+
</goals>
119+
<configuration>
120+
<failOnError>false</failOnError>
121+
</configuration>
122+
</execution>
123+
</executions>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-gpg-plugin</artifactId>
128+
<version>3.1.0</version>
129+
<executions>
130+
<execution>
131+
<id>sign-artifacts</id>
132+
<phase>verify</phase>
133+
<goals>
134+
<goal>sign</goal>
135+
</goals>
136+
</execution>
137+
</executions>
138+
</plugin>
139+
</plugins>
140+
</pluginManagement>
141+
<plugins>
142+
<plugin>
143+
<artifactId>maven-surefire-plugin</artifactId>
144+
<version>2.22.2</version>
145+
</plugin>
146+
<plugin>
147+
<artifactId>maven-failsafe-plugin</artifactId>
148+
<version>2.22.2</version>
149+
</plugin>
150+
<plugin>
151+
<groupId>org.sonatype.central</groupId>
152+
<artifactId>central-publishing-maven-plugin</artifactId>
153+
</plugin>
154+
<plugin>
155+
<groupId>org.apache.maven.plugins</groupId>
156+
<artifactId>maven-source-plugin</artifactId>
157+
</plugin>
158+
<plugin>
159+
<groupId>org.apache.maven.plugins</groupId>
160+
<artifactId>maven-javadoc-plugin</artifactId>
161+
</plugin>
162+
<plugin>
163+
<groupId>org.apache.maven.plugins</groupId>
164+
<artifactId>maven-gpg-plugin</artifactId>
165+
</plugin>
166+
</plugins>
167+
</build>
168+
56169
<repositories>
57170
<repository>
58171
<id>spring-milestones</id>

routing-workflow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-routing-workflow</artifactId>

task-execution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.javaaidev</groupId>
88
<artifactId>agentic-patterns</artifactId>
9-
<version>0.1.0-SNAPSHOT</version>
9+
<version>0.1.0</version>
1010
</parent>
1111

1212
<artifactId>agentic-patterns-task-execution</artifactId>

0 commit comments

Comments
 (0)