mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
0a34c76a82
- .gitignore:显式放行全部 maven-*、scripts、dev-support、frontend、反1、artifacts、历史导出目录 - 新增跟踪:device-manager/device-sdk/legacy-public、davinci-manager、cwos-*、cwos-resource 等源码与附属资源 - davinci FileStorageManagerImpl:Feign Response 关闭、绝对 URL 拉流 SSRF 校验(协议/主机/解析地址) - davinci OuterCallFeignClient:补充契约说明 - cwos-common-aks AksConstant:final 类 + 私有构造防误实例化 - device-manager DeviceConstant:沿用 DEFAULT_APPLICATIONID 拼写修正 Made-with: Cursor
122 lines
5.1 KiB
XML
122 lines
5.1 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>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.1.18.RELEASE</version>
|
||
<relativePath/>
|
||
</parent>
|
||
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cwos-device-authentication</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
<packaging>pom</packaging>
|
||
<name>cwos-device-authentication (Maven reactor)</name>
|
||
<description>补齐私服缺失的 cn.cloudwalk.cloud:cwos-device-authentication:1.0.0-SNAPSHOT 父 POM;cwos-device-authentication-interface 源码来自 反1。依赖 legacy-public、cloud(common-service)、device-sdk、device-manager、maven-cwos-common-aks,请按文档顺序先 install。</description>
|
||
|
||
<modules>
|
||
<module>cwos-device-authentication-interface</module>
|
||
</modules>
|
||
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<cloudwalk-common.version>3.7.2-Brussels-SRX</cloudwalk-common.version>
|
||
<cloudwalk-device.version>2.0.2</cloudwalk-device.version>
|
||
<cloudwalk-aks.version>1.0.0-SNAPSHOT</cloudwalk-aks.version>
|
||
<cloudwalk.device.sdk.version>2.2.0</cloudwalk.device.sdk.version>
|
||
<fastjson.version>1.2.83</fastjson.version>
|
||
<nexus.baseUrl>http://192.168.3.12</nexus.baseUrl>
|
||
<nexus.public.repo>${nexus.baseUrl}/repository/maven-public/</nexus.public.repo>
|
||
</properties>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-result</artifactId>
|
||
<version>${cloudwalk-common.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-service</artifactId>
|
||
<version>${cloudwalk-common.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.hibernate.validator</groupId>
|
||
<artifactId>hibernate-validator</artifactId>
|
||
<version>6.0.22.Final</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>${fastjson.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-device-manager-interface</artifactId>
|
||
<version>${cloudwalk-device.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cwos-common-aks-interface</artifactId>
|
||
<version>${cloudwalk-aks.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk</groupId>
|
||
<artifactId>cloudwalk-device-sdk-protocol-entity</artifactId>
|
||
<version>${cloudwalk.device.sdk.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>nexus-public</id>
|
||
<url>${nexus.public.repo}</url>
|
||
<releases><enabled>true</enabled></releases>
|
||
<snapshots><enabled>true</enabled></snapshots>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<build>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-enforcer-plugin</artifactId>
|
||
<version>3.4.1</version>
|
||
<executions>
|
||
<execution>
|
||
<id>enforce-jdk8</id>
|
||
<goals>
|
||
<goal>enforce</goal>
|
||
</goals>
|
||
<configuration>
|
||
<rules>
|
||
<requireJavaVersion>
|
||
<version>[1.8,1.9)</version>
|
||
</requireJavaVersion>
|
||
</rules>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|