|
6 | 6 | <artifactId>function-call-processor</artifactId> |
7 | 7 | <version>1.0.0</version> |
8 | 8 | <name>FunctionCallProcessor</name> |
| 9 | + <description> |
| 10 | + FCP是一个基于注解的Java工具库,只需使用Function和Property注解,即可轻松将Java方法转换为大模型可识别的FunctionCall格式,并且还支持方法的快速回调。 |
| 11 | + </description> |
| 12 | + <url>https://github.com/AzirZsk/FunctionCallProcessor</url> |
| 13 | + |
| 14 | + <licenses> |
| 15 | + <license> |
| 16 | + <name>The Apache License, Version 2.0</name> |
| 17 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <name>Azir</name> |
| 24 | + <email>2581866471@qq.com</email> |
| 25 | + </developer> |
| 26 | + </developers> |
| 27 | + |
| 28 | + <scm> |
| 29 | + <connection>scm:git:git://github.com/AzirZsk/FunctionCallProcessor.git</connection> |
| 30 | + <developerConnection>scm:git:ssh://github.com/AzirZsk/FunctionCallProcessor.git</developerConnection> |
| 31 | + <url>http://github.com/AzirZsk/FunctionCallProcessor/tree/master</url> |
| 32 | + </scm> |
| 33 | + |
| 34 | + |
| 35 | + |
9 | 36 |
|
10 | 37 | <dependencies> |
11 | 38 | <dependency> |
|
63 | 90 | <target>11</target> |
64 | 91 | </configuration> |
65 | 92 | </plugin> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-source-plugin</artifactId> |
| 96 | + <version>3.1.0</version> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>attach-sources</id> |
| 100 | + <goals> |
| 101 | + <goal>jar-no-fork</goal> |
| 102 | + </goals> |
| 103 | + </execution> |
| 104 | + </executions> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 109 | + <version>3.1.0</version> |
| 110 | + <configuration> |
| 111 | + <additionalJOptions> |
| 112 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
| 113 | + </additionalJOptions> |
| 114 | + </configuration> |
| 115 | + <executions> |
| 116 | + <execution> |
| 117 | + <id>attach-javadocs</id> |
| 118 | + <goals> |
| 119 | + <goal>jar</goal> |
| 120 | + </goals> |
| 121 | + </execution> |
| 122 | + </executions> |
| 123 | + </plugin> |
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-gpg-plugin</artifactId> |
| 127 | + <version>3.1.0</version> |
| 128 | + <executions> |
| 129 | + <execution> |
| 130 | + <id>sign-artifacts</id> |
| 131 | + <phase>verify</phase> |
| 132 | + <goals> |
| 133 | + <goal>sign</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + <plugin> |
| 139 | + <groupId>org.sonatype.central</groupId> |
| 140 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 141 | + <version>0.4.0</version> |
| 142 | + <extensions>true</extensions> |
| 143 | + <configuration> |
| 144 | + <publishingServerId>central</publishingServerId> |
| 145 | + <tokenAuth>true</tokenAuth> |
| 146 | + <deploymentName>${project.groupId}:${project.artifactId}:${project.version}</deploymentName> |
| 147 | + </configuration> |
| 148 | + </plugin> |
66 | 149 | </plugins> |
67 | 150 | </build> |
68 | 151 |
|
|
0 commit comments