asktao_data_helper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.devzwy</groupId> <artifactId>asktao_data_helper</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> <!-- Project name missing, Project description missing, Project URL missing--> <name>asktao</name> <description>an asktao data helper</description> <url>https://github.com/devzwy/AsktaoPackageDataHelper</url> <groupId>io.github.devzwy</groupId> <artifactId>asktao_data_helper</artifactId> <version>1.0.0</version> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.version>1.7.22</kotlin.version> <!-- <okhttp.version>4.10.0</okhttp.version>--> <fastjson.version>2.0.16</fastjson.version> <!-- <dokka.version>1.7.20</dokka.version>--> </properties> <dependencies> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <version>${fastjson.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <!-- <dependency>--> <!-- <groupId>com.squareup.okhttp3</groupId>--> <!-- <artifactId>okhttp</artifactId>--> <!-- <version>${okhttp.version}</version>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>org.jetbrains.kotlin</groupId>--> <!-- <artifactId>kotlin-reflect</artifactId>--> <!-- <version>RELEASE</version>--> <!-- <scope>compile</scope>--> <!-- </dependency>--> </dependencies> <!-- mvn clean deploy --> <!-- 许可证 --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <!-- 源码信息 --> <scm> <url>https://github.com/devzwy/AsktaoPackageDataHelper</url> <connection>scm:https://github.com/devzwy/AsktaoPackageDataHelper.git</connection> <developerConnection>scm:https://github.com/devzwy/AsktaoPackageDataHelper.git</developerConnection> </scm> <!-- 个人信息,对应 gpg 配置 --> <developers> <developer> <name>devzwy</name> <email>dev_zwy@aliyun.com</email> <timezone>+8</timezone> </developer> </developers> <!-- 中央仓库配置id 需对应 settings.xml 的 server的id --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <!-- 打包配置 --> <build> <!-- <finalName>xj-base-admin-${revision}</finalName>--> <plugins> <!-- kotlin--> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <jvmTarget>${maven.compiler.target}</jvmTarget> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <executions> <!-- 替换会被 maven 特别处理的 default-compile --> <execution> <id>default-compile</id> <phase>none</phase> </execution> <!-- 替换会被 maven 特别处理的 default-testCompile --> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> <execution> <id>java-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>java-test-compile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.jetbrains.dokka</groupId>--> <!-- <artifactId>dokka-maven-plugin</artifactId>--> <!-- <version>${dokka.version}</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>pre-site</phase>--> <!-- <goals>--> <!-- <goal>dokka</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- <configuration>--> <!-- <dokkaPlugins>--> <!-- <plugin>--> <!-- <groupId>org.jetbrains.dokka</groupId>--> <!-- <artifactId>kotlin-as-java-plugin</artifactId>--> <!-- <version>${dokka.version}</version>--> <!-- </plugin>--> <!-- </dokkaPlugins>--> <!-- </configuration>--> <!-- </plugin>--> <!-- java-doc配置 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <aggregate>true</aggregate> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <!-- add this to disable checking --> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <!-- 使用source 进行jar打包--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- gpg 配置 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>