metasota-xiezuocat-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xiezuocat</groupId> <artifactId>metasota-xiezuocat-java</artifactId> <version>1.0.0</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>xiezuocat-maven</name> <url>https://github.com/metasotadata/metasota-xiezuocat-java</url> <description>写作猫 API 封装</description> <licenses> <license> <name>The MIT License</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>metasotadata</name> <email>support@xiezuocat.com</email> </developer> </developers> <scm> <url>https://github.com/metasotadata/metasota-xiezuocat-java</url> <connection>https://github.com/metasotadata/metasota-xiezuocat-java.git</connection> </scm> <!-- 只需在父工程中添加,子工程不用添加 --> <distributionManagement> <snapshotRepository> <id>xiezuocat-maven</id> <!-- 此处id与setting.xml中的服务id保持一致 --> <name>oss Snapshots Repository</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <!-- <repository>--> <!-- <id>xiezuocat-maven</id> <!– 此处id与setting.xml中的服务id保持一致 –>--> <!-- <name>oss Staging Repository</name>--> <!-- <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>--> <!-- </repository>--> <repository> <id>xiezuocat-maven</id> <name>Release</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <groupId>com.xiezuocat</groupId> <artifactId>metasota-xiezuocat-java</artifactId> <version>1.0.0</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <build> <plugins> <!--编译插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <!-- <autoVersionSubmodules>true</autoVersionSubmodules>--> <!-- <useReleaseProfile>false</useReleaseProfile>--> <!-- <releaseProfiles>release</releaseProfiles>--> <!-- <goals>deploy</goals>--> </configuration> </plugin> <!--生产源码文件插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--生产javadoc插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--gpg加密插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.5</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.14.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.68</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.5</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.61</version> </dependency> </dependencies> </project>