mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +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
112 lines
3.9 KiB
Plaintext
112 lines
3.9 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
<artifactId>jackson-modules-base</artifactId>
|
|
<version>2.11.2</version>
|
|
</parent>
|
|
<artifactId>jackson-module-afterburner</artifactId>
|
|
<name>Jackson module: Afterburner</name>
|
|
<packaging>bundle</packaging>
|
|
<description>Jackson (https://github.com/FasterXML/jackson) extension module
|
|
used to enhance performance using bytecode generation to replace use of Reflection for
|
|
field access and method calls
|
|
</description>
|
|
<url>https://github.com/FasterXML/jackson-modules-base</url>
|
|
|
|
<properties>
|
|
<!-- Generate PackageVersion.java into this directory. -->
|
|
<packageVersion.dir>com/fasterxml/jackson/module/afterburner</packageVersion.dir>
|
|
<packageVersion.package>${project.groupId}.afterburner</packageVersion.package>
|
|
|
|
<!-- 29-Oct-2015, tatu: default export should work fine; but for import may need dynamic/optional
|
|
-->
|
|
|
|
<!-- 09-Oct-2011, tatu: should NOT require "com.fasterxml.jackson.databind.deser.impl", but
|
|
Maven Bundle plug-in insists for some reason?!?
|
|
Similarly, org.objectweb.asm is shaded... why require?
|
|
(will try to hide via resolution directive)
|
|
-->
|
|
<osgi.import>org.objectweb.asm;resolution:=optional,
|
|
*
|
|
</osgi.import>
|
|
<!--
|
|
<osgi.private>com.fasterxml.jackson.module.afterburner.asm</osgi.private>
|
|
-->
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Extends Jackson core, mapper,
|
|
Also needs ASM for bytecode generation
|
|
-->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
</dependency>
|
|
<dependency> <!-- tests use Jackson annoations -->
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
<artifactId>replacer</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>process-packageVersion</id>
|
|
<phase>generate-sources</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<!-- We will shade ASM, to simplify deployment, avoid version conflicts -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>org.ow2.asm:asm</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.objectweb.asm</pattern>
|
|
<shadedPattern>com.fasterxml.jackson.module.afterburner.asm</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- 14-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8
|
|
will have to use `moduleInfoFile` as anything else requires JDK 9+
|
|
-->
|
|
<plugin>
|
|
<groupId>org.moditect</groupId>
|
|
<artifactId>moditect-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</build>
|
|
</project>
|