pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>gihon.component</groupId>
  9. <artifactId>component-parent</artifactId>
  10. <version>0.2.0-SNAPSHOT</version>
  11. <relativePath>../</relativePath>
  12. </parent>
  13. <artifactId>component-sso</artifactId>
  14. <name>component-sso</name>
  15. <description>单点登录模块,可以单独部署,也可以集成</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>gihon.component</groupId>
  22. <artifactId>component-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>gihon.component</groupId>
  26. <artifactId>component-websecurity</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-assembly-plugin</artifactId>
  34. <version>3.4.2</version>
  35. <configuration>
  36. <filters>
  37. <filter>${assembly.filter.path}</filter>
  38. </filters>
  39. </configuration>
  40. <executions>
  41. <execution>
  42. <id>make-assembly</id>
  43. <phase>package</phase>
  44. <goals>
  45. <goal>single</goal>
  46. </goals>
  47. <configuration>
  48. <finalName>${project.name}</finalName>
  49. <skipAssembly>false</skipAssembly>
  50. <appendAssemblyId>false</appendAssemblyId>
  51. <descriptors>
  52. <descriptor>${assembly.path}/package.xml</descriptor>
  53. </descriptors>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>