pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <executions>
  36. <execution>
  37. <id>make-assembly</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>single</goal>
  41. </goals>
  42. <configuration>
  43. <finalName>${project.name}</finalName>
  44. <skipAssembly>false</skipAssembly>
  45. <appendAssemblyId>false</appendAssemblyId>
  46. <descriptors>
  47. <descriptor>src/assembly/package.xml</descriptor>
  48. </descriptors>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>