2025-10-09 10:13:43 +08:00
|
|
|
<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">
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.securityControl</groupId>
|
|
|
|
|
<artifactId>securityControl</artifactId>
|
|
|
|
|
<version>3.6.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>gs-auth</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
securityControl-auth认证授权中心
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Web -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- VideoSecurityControl Common Security-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.securityControl</groupId>
|
|
|
|
|
<artifactId>securityControl-common-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.securityControl</groupId>
|
|
|
|
|
<artifactId>securityControl-api-system</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- logstash -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.logstash.logback</groupId>
|
|
|
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>1.2.17</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Apache Lang3 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--解析第三方登录-->
|
|
|
|
|
<!---结束-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sgcc.uap</groupId>
|
|
|
|
|
<artifactId>sgsm</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
<systemPath>${project.basedir}/lib/sgsm-1.0.0.jar</systemPath>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>isc_sso_agent</groupId>
|
|
|
|
|
<artifactId>isc_sso_agent</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
<systemPath>${project.basedir}/lib/isc_sso_agent.jar</systemPath>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-10-09 13:22:42 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>httpclient</groupId>-->
|
|
|
|
|
<!-- <artifactId>httpclient</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/commons-httpclient-3.1.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- -->
|
2025-10-09 10:13:43 +08:00
|
|
|
<dependency>
|
2025-10-09 13:22:42 +08:00
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
|
<version>3.1</version>
|
2025-10-09 10:13:43 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2025-10-09 13:22:42 +08:00
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
<version>20220320</version>
|
2025-10-09 10:13:43 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2025-10-09 13:22:42 +08:00
|
|
|
<!-- <dependency>-->
|
2025-10-09 10:13:43 +08:00
|
|
|
<!-- <groupId>jackson-core-asl-1.9.13</groupId>-->
|
|
|
|
|
<!-- <artifactId>jackson-core-asl-1.9.13</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/jackson-core-asl-1.9.13.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>jackson-mapper-asl-1.9.13</groupId>-->
|
|
|
|
|
<!-- <artifactId>jackson-mapper-asl-1.9.13</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/jackson-mapper-asl-1.9.13.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>xmlpull-1.1.3.1</groupId>-->
|
|
|
|
|
<!-- <artifactId>xmlpull-1.1.3.1</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/xmlpull-1.1.3.1.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>xpp3_min-1.1.4c</groupId>-->
|
|
|
|
|
<!-- <artifactId>xpp3_min-1.1.4c</artifactId>-->
|
|
|
|
|
<!-- <version>1.0</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/xpp3_min-1.1.4c.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sgcc.sgid</groupId>
|
|
|
|
|
<artifactId>com.sgcc.sgid.agent1.0.0</artifactId>
|
|
|
|
|
<version>20200528</version>
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
<systemPath>${project.basedir}/lib/com.sgcc.sgid.agent1.0.0-20200528.jar</systemPath>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2025-10-09 13:22:42 +08:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
2025-10-09 10:13:43 +08:00
|
|
|
<version>2.6.2</version>
|
|
|
|
|
</dependency>
|
2025-10-09 13:22:42 +08:00
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
2025-10-09 10:13:43 +08:00
|
|
|
<!-- <groupId>bcprov-jdk15on</groupId>-->
|
|
|
|
|
<!-- <artifactId>bcprov-jdk15on-1.55</artifactId>-->
|
|
|
|
|
<!-- <version>1.55</version>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <systemPath>${project.basedir}/lib/bcprov-jdk15on-1.55.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>2.7.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|