mmcUtils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.foyuexiaoerbuyu</groupId> <artifactId>mmcUtils</artifactId> <version>1.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.foyuexiaoerbuyu</groupId> <artifactId>mmcUtils</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>mmcUtils</name> <description>comm tools java</description> <url>https://github.com/foyuexiaoerbuyu/mmcUtils</url> <licenses> <license> <name>The Apache Software License, Version2.0</name> <url>https://www.apache.org/licenses/</url> <distribution>repo</distribution> </license> </licenses> <!-- 仓库信息,根据实际情况修改 --> <scm> <url>https://github.com/foyuexiaoerbuyu/mmcUtils</url> <connection>git@github.com:foyuexiaoerbuyu/mmcUtils.git</connection> <developerConnection>github.com/foyuexiaoerbuyu/mmcUtils</developerConnection> </scm> <!-- 开发者信息,根据实际情况修改 --> <developers> <developer> <id>mmcUtils</id> <name>mmcUtils</name> <email>1950053842@qq.com</email> <url>https://github.com/foyuexiaoerbuyu</url> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.test.skip>true</maven.test.skip> <maven.javadoc.skip>false</maven.javadoc.skip> </properties> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.14.9</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.6</version> </dependency> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>17.0.1</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>17.0.1</version> </dependency> </dependencies> <distributionManagement> <!-- 快照仓库 --> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- 正式仓库 --> <repository> <id>sonatype-nexus-staging</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <!-- 下列插件是发布到中央仓库所需要的,已配置好无需修改 --> <plugins> <!-- central发布插件 --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>mmcUtils</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <!-- source源码插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</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> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <executable>D:/app/GnuPG/bin/gpg.exe</executable> <keyname>BC566015D9E5AD83E01B680AFAF3C66659142FBC</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>