Method 2: Add file configuration to jar packages and package third-party jar packages together
<dependency>
<groupId>xxxxx</groupId>
<artifactId>xxxxx</artifactId>
<version>xxx</version>
<scope>compile</scope>Adding this configuration provided will not enter the jar package, compile will enter the jar package
</dependency>