mirror of
https://github.com/czp3009/bilibili-api.git
synced 2025-02-19 20:50:28 +08:00
156 lines
5.4 KiB
XML
156 lines
5.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>com.hiczp</groupId>
|
||
|
<artifactId>bilibili-api</artifactId>
|
||
|
<name>bilibili-api</name>
|
||
|
<version>1.0</version>
|
||
|
<description>Bilibili API</description>
|
||
|
<url>https://github.com/czp3009/bilibili-api</url>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>GNU GENERAL PUBLIC LICENSE Version 3</name>
|
||
|
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>czp</name>
|
||
|
<email>czp3009@gmail.com</email>
|
||
|
<url>https://www.hiczp.com/</url>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<scm>
|
||
|
<connection>scm:git@github.com:czp3009/bilibili-api.git</connection>
|
||
|
<developerConnection>scm:git@github.com:czp3009/bilibili-api.git</developerConnection>
|
||
|
<url>git@github.com:czp3009/bilibili-api.git</url>
|
||
|
</scm>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>oss</id>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit -->
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.retrofit2</groupId>
|
||
|
<artifactId>retrofit</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-gson -->
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.retrofit2</groupId>
|
||
|
<artifactId>converter-gson</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor -->
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>logging-interceptor</artifactId>
|
||
|
<version>3.9.0</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
<version>1.7.25</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/junit/junit -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
<version>1.7.25</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>2.6</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-sources</id>
|
||
|
<goals>
|
||
|
<goal>jar-no-fork</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-javadoc</id>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<show>public</show>
|
||
|
<charset>UTF-8</charset>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<docencoding>UTF-8</docencoding>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>sign-artifacts</id>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|