- 增加 Salesforce CLI 和 Legacy Credential 登录支持 - 将错误码映射从数据库表改为枚举类(SalesforceErrorCode) - 增加会话管理表(datai_sf_login_session)和功能 - 增加登录历史导出 Excel 和分页查询功能 - 优化系统配置字段(login_url、grant_type、org_alias) - 更新业务场景、功能需求、数据模型、业务规则等章节 - 确保总需求文档与所有子需求保持一致
139 lines
4.4 KiB
XML
139 lines
4.4 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>
|
|
<parent>
|
|
<groupId>com.datai</groupId>
|
|
<artifactId>datai-scene-salesforce</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>datai-salesforce-common</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>22</maven.compiler.source>
|
|
<maven.compiler.target>22</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.datai</groupId>
|
|
<artifactId>datai-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>force-wsc</artifactId>
|
|
<version>58.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>partner</artifactId>
|
|
<version>57.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/partner.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>metadata</artifactId>
|
|
<version>57.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/metadata.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>tooling</artifactId>
|
|
<version>57.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/tooling.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>apex</artifactId>
|
|
<version>57.0.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/apex.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.force.api</groupId>
|
|
<artifactId>force-wsc</artifactId>
|
|
<version>57.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.14</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
<version>4.4.16</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.15.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>2.15.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>2.15.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>2.0.9</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.4.11</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>2.1.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|