dify-util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.crazybunqnq.mvn</groupId> <artifactId>dify-util</artifactId> <version>0.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.14</version> <relativePath/> </parent> <groupId>com.crazybunqnq.mvn</groupId> <artifactId>dify-util</artifactId> <version>0.0.2</version> <name>dify-util</name> <description>Dify API Utility for Java</description> <url>https://github.com/CrazyBunQnQ/dify-util</url> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/CrazyBunQnQ/dify-util/issues</url> </issueManagement> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>CrazyBunQnQ</name> <email>baobao222222@qq.com</email> <organization>CrazyCodeLab</organization> <organizationUrl>https://github.com/CrazyCodeLab</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/CrazyBunQnQ/dify-util.git</connection> <developerConnection>scm:git:ssh://github.com:CrazyBunQnQ/dify-util.git</developerConnection> <url>https://github.com/CrazyBunQnQ/dify-util</url> </scm> <properties> <java.version>8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.14</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <!--注意,此id必须与setting.xml中指定的一致--> <id>ossrh</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gpg4maven-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> --> <!--发布到中央SNAPSHOT仓库插件--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <autoPublish>true</autoPublish> <!-- <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> --> <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose> --> <debug>true</debug> </configuration> </plugin> <!--ok--> <!--生成源码插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.2</version> </plugin> <!--ok--> <!--生成API文档插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--ok--> <!--gpg插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.0</version> </plugin> </plugins> </build> <!--ok--> <distributionManagement> <snapshotRepository> <!--注意,此id必须与setting.xml中指定的一致--> <id>ossrh</id> <url>https://s01.oss.sonatype.org</url> </snapshotRepository> <!-- <repository> --> <!-- <id>ossrh</id> --> <!-- <url>https://s01.oss.sonatype.org</url> --> <!-- </repository> --> </distributionManagement> </profile> </profiles> </project>