auth-client-1.0.10.pom 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <parent>
  6. <artifactId>auth</artifactId>
  7. <groupId>com.hotent</groupId>
  8. <version>1.0.10</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>auth-client</artifactId>
  13. <version>1.0.10</version>
  14. <name>auth-client</name>
  15. <description>bpm-runtime实例启动,客户端上线逻辑</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.hotent</groupId>
  19. <artifactId>license4eip8</artifactId>
  20. <version>${license4eip.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.hotent</groupId>
  24. <artifactId>auth-license</artifactId>
  25. <version>${license4eip.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.hotent</groupId>
  29. <artifactId>base</artifactId>
  30. <!-- <scope>provided</scope> -->
  31. <version>${eip.version}</version>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. </dependencies>
  52. <distributionManagement>
  53. <repository>
  54. <id>nexus-public</id>
  55. <url>http://10.7.1.10:8081/nexus/content/repositories/releases/</url>
  56. </repository>
  57. </distributionManagement>
  58. <!-- <build>-->
  59. <!-- <plugins>-->
  60. <!-- &lt;!&ndash;混淆插件&ndash;&gt;-->
  61. <!-- <plugin>-->
  62. <!-- <groupId>com.github.wvengen</groupId>-->
  63. <!-- <artifactId>proguard-maven-plugin</artifactId>-->
  64. <!-- <version>2.6.1</version>-->
  65. <!-- <executions>-->
  66. <!-- &lt;!&ndash; 以下配置说明执行mvn的package命令时候,会执行proguard&ndash;&gt;-->
  67. <!-- <execution>-->
  68. <!-- <phase>package</phase>-->
  69. <!-- <goals>-->
  70. <!-- <goal>proguard</goal>-->
  71. <!-- </goals>-->
  72. <!-- </execution>-->
  73. <!-- </executions>-->
  74. <!-- <configuration>-->
  75. <!-- &lt;!&ndash; 就是输入Jar的名称,我们要知道,代码混淆其实是将一个原始的jar,生成一个混淆后的jar,那么就会有输入输出。 &ndash;&gt;-->
  76. <!-- <injar>${project.build.finalName}.jar</injar>-->
  77. <!-- &lt;!&ndash; 输出jar名称,输入输出jar同名的时候就是覆盖,也是比较常用的配置。 &ndash;&gt;-->
  78. <!-- <outjar>${project.build.finalName}.jar</outjar>-->
  79. <!-- &lt;!&ndash; 是否混淆 默认是true &ndash;&gt;-->
  80. <!-- <obfuscate>true</obfuscate>-->
  81. <!-- &lt;!&ndash; 配置一个文件,通常叫做proguard.cfg,该文件主要是配置options选项,也就是说使用proguard.cfg那么options下的所有内容都可以移到proguard.cfg中 &ndash;&gt;-->
  82. <!-- <proguardInclude>${project.basedir}/proguard.cfg</proguardInclude>-->
  83. <!-- &lt;!&ndash; 额外的jar包,通常是项目编译所需要的jar &ndash;&gt;-->
  84. <!-- <libs>-->
  85. <!-- <lib>${java.home}/lib/rt.jar</lib>-->
  86. <!-- <lib>${java.home}/lib/jce.jar</lib>-->
  87. <!-- <lib>${java.home}/lib/jsse.jar</lib>-->
  88. <!-- </libs>-->
  89. <!-- &lt;!&ndash; 对输入jar进行过滤比如,如下配置就是对META-INFO文件不处理。 &ndash;&gt;-->
  90. <!-- &lt;!&ndash; <inLibsFilter>!META-INF/**,!META-INF/versions/9/**.class</inLibsFilter> &ndash;&gt;-->
  91. <!-- &lt;!&ndash; 这是输出路径配置,但是要注意这个路径必须要包括injar标签填写的jar &ndash;&gt;-->
  92. <!-- <outputDirectory>${project.basedir}/target</outputDirectory>-->
  93. <!-- &lt;!&ndash;这里特别重要,此处主要是配置混淆的一些细节选项,比如哪些类不需要混淆,哪些需要混淆&ndash;&gt;-->
  94. <!-- <options>-->
  95. <!-- &lt;!&ndash; 可以在此处写option标签配置,不过我上面使用了proguardInclude,故而我更喜欢在proguard.cfg中配置 &ndash;&gt;-->
  96. <!-- </options>-->
  97. <!-- </configuration>-->
  98. <!-- </plugin>-->
  99. <!-- &lt;!&ndash;spring boot 打包插件&ndash;&gt;-->
  100. <!-- <plugin>-->
  101. <!-- <groupId>org.springframework.boot</groupId>-->
  102. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  103. <!-- <version>2.5.9</version>-->
  104. <!-- <executions>-->
  105. <!-- <execution>-->
  106. <!-- <goals>-->
  107. <!-- <goal>repackage</goal>-->
  108. <!-- </goals>-->
  109. <!-- </execution>-->
  110. <!-- </executions>-->
  111. <!-- </plugin>-->
  112. <!-- </plugins>-->
  113. <!-- </build>-->
  114. </project>