Skip to content

Commit 122dc19

Browse files
authored
Merge pull request agentscope-ai#1 from chickenlj/first-release
Prepare for first release
2 parents 6e28e85 + 4f416df commit 122dc19

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

examples/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<groupId>io.agentscope</groupId>
24-
<artifactId>core-examples</artifactId>
25-
<version>1.0-SNAPSHOT</version>
24+
<artifactId>agentscope-core-examples</artifactId>
25+
<version>0.0.1-SNAPSHOT</version>
2626
<packaging>jar</packaging>
2727

2828
<name>AgentScope Core Java Examples</name>
@@ -38,8 +38,8 @@
3838
<!-- AgentScope Core - Main dependency -->
3939
<dependency>
4040
<groupId>io.agentscope</groupId>
41-
<artifactId>core</artifactId>
42-
<version>1.0-SNAPSHOT</version>
41+
<artifactId>agentscope-core</artifactId>
42+
<version>0.1.0</version>
4343
<exclusions>
4444
<exclusion>
4545
<artifactId>slf4j-simple</artifactId>

pom.xml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,19 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<groupId>io.agentscope</groupId>
24-
<artifactId>core</artifactId>
24+
<artifactId>agentscope-core</artifactId>
2525
<name>AgentScope Implementation for Java</name>
26-
<version>0.1.0-SNAPSHOT</version>
26+
<version>0.1.0</version>
2727

2828
<description>AgentScope Java: Agent-Oriented Programming for Building LLM Applications</description>
2929
<url>https://github.com/agentscope-ai/agentscope-java</url>
3030

31+
<scm>
32+
<connection>[email protected]:agentscope-ai/agentscope-java.git</connection>
33+
<developerConnection>[email protected]:agentscope-ai/agentscope-java.git</developerConnection>
34+
<url>https://github.com/agentscope-ai/agentscope-java</url>
35+
</scm>
36+
3137
<organization>
3238
<name>Alibaba</name>
3339
<url>https://agentscope.io</url>
@@ -64,6 +70,8 @@
6470
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
6571
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6672
<surefireArgLine>-Xms512m -Xmx1024m</surefireArgLine>
73+
74+
<central.publishing.maven.version>0.7.0</central.publishing.maven.version>
6775
</properties>
6876

6977
<dependencies>
@@ -298,6 +306,16 @@
298306
</execution>
299307
</executions>
300308
</plugin>
309+
310+
<plugin>
311+
<groupId>org.sonatype.central</groupId>
312+
<artifactId>central-publishing-maven-plugin</artifactId>
313+
<version>${central.publishing.maven.version}</version>
314+
<extensions>true</extensions>
315+
<configuration>
316+
<publishingServerId>central</publishingServerId>
317+
</configuration>
318+
</plugin>
301319
</plugins>
302320
</build>
303321
</profile>

0 commit comments

Comments
 (0)