- 新增HGLibDeviceParam构造函数支持Pointer初始化 - 新增HGLibDeviceParamGroup构造函数支持Pointer初始化 - 新增getDeviceParam方法获取设备参数结构体- 新增getIntDeviceParam、getEnumDeviceParam等类型安全的参数获取方法 - 新增getDeviceParamGroupList方法获取参数组列表 - 新增getDeviceParamsByGroup方法获取指定组的参数列表 - 新增resetDeviceParam方法重置设备参数 - 新增getDeviceParamDescription方法获取参数描述信息 - 引入IntByReference类用于参数计数引用传递 - 调整Maven GPG插件和Central发布插件配置至release profile - 升级项目版本号从1.0.2到1.0.3
202 lines
7.5 KiB
XML
202 lines
7.5 KiB
XML
<?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>vip.jcfd</groupId>
|
|
<artifactId>HuaGoScanner-SDK</artifactId>
|
|
<version>1.0.3</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- 项目信息 -->
|
|
<name>HuaGoScanner-SDK</name>
|
|
<description>HuaGo Scanner SDK for Java</description>
|
|
<url>https://gitea.jcfd.vip/zkh/HuaGoScanner-SDK</url>
|
|
|
|
<!-- 开发者信息 -->
|
|
<developers>
|
|
<developer>
|
|
<id>developer-id</id>
|
|
<name>zkh</name>
|
|
<email>1650697374@qq.com</email>
|
|
<roles>
|
|
<role>developer</role>
|
|
<role>maintainer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<!-- 许可证信息 -->
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
|
|
<!-- SCM信息 -->
|
|
<scm>
|
|
<connection>scm:git:git://gitea.jcfd.vip/zkh/HuaGoScanner-SDK.git</connection>
|
|
<url>https://gitea.jcfd.vip/zkh/HuaGoScanner-SDK.git</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>5.17.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
<version>5.17.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<url>https://maven.aliyun.com/repository/central</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>central</id>
|
|
<url>https://maven.aliyun.com/repository/central</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Maven Compiler Plugin - 确保使用正确的Java版本编译 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- 发布配置文件 -->
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<!-- Maven GPG Plugin - 用于签名构件 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<!-- 使用环境变量中的gpg密钥密码 -->
|
|
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
|
|
<!-- 指定GPG可执行文件路径 -->
|
|
<executable>gpg</executable>
|
|
<!-- 使用默认密钥 -->
|
|
<useAgent>true</useAgent>
|
|
<!-- 设置gpg主目录 -->
|
|
<gpgArguments>
|
|
<arg>--pinentry-mode</arg>
|
|
<arg>loopback</arg>
|
|
</gpgArguments>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Central Publishing Plugin - 发布到Maven Central -->
|
|
<plugin>
|
|
<groupId>org.sonatype.central</groupId>
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
<version>0.9.0</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<publishingServerId>central</publishingServerId>
|
|
<!-- 确保所有文件都被签名 -->
|
|
<autoPublish>true</autoPublish>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- 在发布时激活source和javadoc插件 -->
|
|
<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.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|