invoice
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.fapiaoapi</groupId> <artifactId>invoice</artifactId> <version>1.0.7</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.fapiaoapi</groupId> <artifactId>invoice</artifactId> <version>1.0.7</version> <packaging>jar</packaging> <name>Java SDK for Electronic and Digital Invoices (发票/电子发票/数电票)</name> <description> 用于处理发票、电子发票、数电发票和全电发票的Java SDK,支持开票、验真和API集成。 Java SDK for Electronic Invoices, Digital Invoices (数电票), and Full-Electronic Invoices (全电票), with APIs for issuance, validation, and integration. </description> <url>https://github.com/fapiaoapi/invoice-sdk-java</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <!--对应你maven配置中的server id--> <id>invoice</id> <name>yuejianghe</name> <email>yuejianghe@qq.com</email> <roles> <role>Project Manager</role> <role>Developer</role> </roles> </developer> </developers> <scm> <connection>https://github.com/fapiaoapi/invoice-java-sdk.git</connection> <developerConnection>scm:git:ssh://git@github.com:fapiaoapi/invoice-java-sdk.git</developerConnection> <url>https://github.com/fapiaoapi/invoice-java-sdk</url> </scm> <properties> <java.version>17</java.version> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jackson.version>2.15.2</jackson.version> </properties> <dependencies> <!-- JSON 处理 --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <!-- 测试框架 --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.2</version> <scope>test</scope> </dependency> <!-- 日志框架 --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>invoice</publishingServerId> </configuration> </plugin> </plugins> </build> </project>