pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.shcd</groupId>
  7. <artifactId>licence</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0.RELEASE</version>
  10. <description>licence许可证书</description>
  11. <modules>
  12. <module>server</module>
  13. <module>core</module>
  14. <module>client-offline</module>
  15. </modules>
  16. <properties>
  17. <maven.compiler.source>8</maven.compiler.source>
  18. <maven.compiler.target>8</maven.compiler.target>
  19. </properties>
  20. <!-- SpringBoot 版本 -->
  21. <parent>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-parent</artifactId>
  24. <version>2.5.15</version>
  25. </parent>
  26. <dependencies>
  27. <!-- web支持 -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <!-- 构建工具 -->
  34. <build>
  35. <plugins>
  36. <!-- 打包插件 -->
  37. <plugin>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-maven-plugin</artifactId>
  40. <configuration>
  41. <includeSystemScope>true</includeSystemScope>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <!--
  46. 1. 加密后,方法体被清空,保留方法参数、注解等信息.主要兼容swagger文档注解扫描
  47. 2. 方法体被清空后,反编译只能看到方法名和注解,看不到方法体的具体内容
  48. 3. 加密后的项目需要设置javaagent来启动,启动过程中解密class,完全内存解密,不留下任何解密后的文件
  49. 4. 启动加密后的jar,生成xxx-encrypted.jar,这个就是加密后的jar文件,加密后不可直接执行
  50. 5. 无密码启动方式,java -javaagent:xxx-encrypted.jar -jar xxx-encrypted.jar
  51. 6. 有密码启动方式,java -javaagent:xxx-encrypted.jar='-pwd= 密码' -jar xxx-encrypted.jar
  52. -->
  53. <groupId>net.roseboy</groupId>
  54. <artifactId>classfinal-maven-plugin</artifactId>
  55. <version>1.2.1</version>
  56. <configuration>
  57. <password>#</password><!-- #表示启动时不需要密码,事实上对于代码混淆来说,这个密码没什么用,它只是一个启动密码 -->
  58. <excludes>org.spring</excludes>
  59. <packages>${groupId}</packages><!-- 加密的包名,多个包用逗号分开 -->
  60. <cfgfiles>application.yml,application-dev.yml</cfgfiles><!-- 加密的配置文件,多个包用逗号分开 -->
  61. <libjars>core-licence-1.0.0.RELEASE.jar</libjars> <!-- jar包lib下面要加密的jar依赖文件,多个包用逗号分开 -->
  62. </configuration>
  63. <executions>
  64. <execution>
  65. <phase>package</phase>
  66. <goals>
  67. <goal>classFinal</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>