123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>gihon.component</groupId>
- <artifactId>component-parent</artifactId>
- <version>0.2.0-SNAPSHOT</version>
- <relativePath>../</relativePath>
- </parent>
- <artifactId>component-sso</artifactId>
- <name>component-sso</name>
- <description>单点登录模块,可以单独部署,也可以集成</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-common</artifactId>
- </dependency>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-websecurity</artifactId>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.4.2</version>
- <configuration>
- <filters>
- <filter>${assembly.filter.path}</filter>
- </filters>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <finalName>${project.name}</finalName>
- <skipAssembly>false</skipAssembly>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptors>
- <descriptor>${assembly.path}/package.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|