<?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">
|
<parent>
|
<artifactId>jnpf-biz-common</artifactId>
|
<groupId>com.jnpf</groupId>
|
<version>6.1.0-RELEASE</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jnpf-biz-common-server</artifactId>
|
|
<dependencies>
|
<!-- 聚合层:每新增一个能力模块,在这里加一个依赖(server 只做聚合,不写业务) -->
|
<dependency>
|
<groupId>com.jnpf</groupId>
|
<artifactId>jnpf-biz-common-onlyoffice</artifactId>
|
<version>${project.version}</version>
|
</dependency>
|
<!-- 审计追踪能力(2026-08-11 搬入,原 cx-audit:30014 退役,其 controller 由本服务聚合)。
|
注意 jnpf-audit-sdk **不在这里**:它跑在业务进程内(jnpf-lims),不是本服务的一部分。 -->
|
<dependency>
|
<groupId>com.jnpf</groupId>
|
<artifactId>jnpf-biz-common-audit</artifactId>
|
<version>${project.version}</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<!-- @EnableFeignClients 所需(openfeign 平台惯例经各 -api 模块的 jnpf-common-feign 传入;
|
本服务无 -api 模块,在聚合层直接声明,能力模块调其他服务 Feign 契约开箱即用) -->
|
<dependency>
|
<groupId>com.jnpf</groupId>
|
<artifactId>jnpf-common-feign</artifactId>
|
<version>${project.version}</version>
|
</dependency>
|
</dependencies>
|
|
<profiles>
|
<profile>
|
<id>default-package</id>
|
<activation>
|
<jdk>[,]</jdk>
|
</activation>
|
<build>
|
<finalName>jnpf-biz-common-${project.version}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<!-- 指定该Main Class为全局的唯一入口 -->
|
<mainClass>jnpf.JnpfBizCommonApplication</mainClass>
|
<layout>ZIP</layout>
|
</configuration>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
</profile>
|
<profile>
|
<id>external-package</id>
|
<build>
|
<finalName>jnpf-biz-common-${project.version}</finalName>
|
<plugins>
|
<!-- 复制依赖到外部目录 -->
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
<executions>
|
<execution>
|
<id>copy-dependencies</id>
|
<phase>package</phase>
|
<goals>
|
<goal>copy-dependencies</goal>
|
</goals>
|
<configuration>
|
<outputDirectory>${external-lib-out-path}</outputDirectory>
|
<overWriteReleases>true</overWriteReleases>
|
<overWriteSnapshots>true</overWriteSnapshots>
|
<overWriteIfNewer>true</overWriteIfNewer>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-jar-plugin</artifactId>
|
<configuration>
|
<archive>
|
<manifest>
|
<!--启动类path-->
|
<mainClass>jnpf.JnpfBizCommonApplication</mainClass>
|
<addClasspath>true</addClasspath>
|
<classpathPrefix>${external-lib-start-path}</classpathPrefix>
|
</manifest>
|
<manifestEntries>
|
<!--如果不指定,classpath 可能会找不到,加载资源有问题-->
|
<Class-Path>.</Class-Path>
|
</manifestEntries>
|
</archive>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</profile>
|
</profiles>
|
|
</project>
|