mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
27c3949045
- .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
Former-commit-id: 0a34c76a82
66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.jvnet</groupId>
|
|
<artifactId>animal-sniffer-annotation</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<name>Annotation for JDK requirements</name>
|
|
|
|
|
|
<scm>
|
|
<connection>scm:svn:https://svn.dev.java.net/svn/animal-sniffer/tags/animal-sniffer-annotation-1.0</connection>
|
|
<developerConnection>scm:svn:https://svn.dev.java.net/svn/animal-sniffer/tags/animal-sniffer-annotation-1.0</developerConnection>
|
|
<url>https://animal-sniffer.dev.java.net/source/browse/animal-sniffer/tags/animal-sniffer-annotation-1.0</url>
|
|
</scm>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>java.net2</id>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
</repository>
|
|
<!--repository>
|
|
<id>java.net1</id>
|
|
<url>http://download.java.net/maven/1/</url>
|
|
</repository-->
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>java.net-maven2-repository</id>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
<url>java-net:/maven2-repository/trunk/www/repository/</url>
|
|
</repository>
|
|
<site>
|
|
<id>animal-sniffer-www</id>
|
|
<url>java-net:/animal-sniffer/trunk/www/annotation/</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.jvnet.wagon-svn</groupId>
|
|
<artifactId>wagon-svn</artifactId>
|
|
<version>1.9</version>
|
|
</extension>
|
|
</extensions>
|
|
</build>
|
|
|
|
<licenses>
|
|
<license>
|
|
<distribution>repo</distribution>
|
|
<name>Common Development and Distribution License</name>
|
|
<url>http://www.opensource.org/licenses/cddl1.php</url>
|
|
</license>
|
|
</licenses>
|
|
</project>
|