| <?xml version="1.0" encoding="UTF-8"?> | 
 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
 |   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
 |   <modelVersion>4.0.0</modelVersion> | 
 |  | 
 |   <groupId>com.supwisdom.institute</groupId> | 
 |   <artifactId>sw-backend-parent</artifactId> | 
 |   <version>0.0.2-SNAPSHOT</version> | 
 |   <packaging>pom</packaging> | 
 |  | 
 |   <name>Supwisdom Backend Framework Parent</name> | 
 |   <description>Supwisdom Backend Framework Parent project</description> | 
 |  | 
 |   <modules> | 
 |     <module>common</module> | 
 |  | 
 |     <module>thirdparty-agent</module> | 
 |  | 
 |     <module>admin-sa</module> | 
 |     <module>biz-sa</module> | 
 |  | 
 |     <module>admin-bff</module> | 
 |  | 
 |     <module>gateway</module> | 
 |   </modules> | 
 |  | 
 |   <properties> | 
 |     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
 |     <java.version>1.8</java.version> | 
 |  | 
 |     <argLine>-Dfile.encoding=UTF-8</argLine> | 
 |  | 
 |     <downloadSources>true</downloadSources> | 
 |     <downloadJavadocs>true</downloadJavadocs> | 
 |  | 
 |     <maven.compiler.source>${java.version}</maven.compiler.source> | 
 |     <maven.compiler.target>${java.version}</maven.compiler.target> | 
 |  | 
 |     <maven.deploy.skip>true</maven.deploy.skip> | 
 |  | 
 |     <dockerfile-maven-plugin.version>1.4.8</dockerfile-maven-plugin.version> | 
 |     <dockerfile.image.server>harbor.supwisdom.com</dockerfile.image.server> | 
 |     <dockerfile.image.prefix>sw-admin-framework</dockerfile.image.prefix> | 
 |   </properties> | 
 |  | 
 |   <repositories> | 
 |     <repository> | 
 |       <snapshots> | 
 |         <enabled>true</enabled> | 
 |       </snapshots> | 
 |       <id>supwisdom</id> | 
 |       <url>https://app.supwisdom.com/nexus/content/groups/public/</url> | 
 |     </repository> | 
 |     <repository> | 
 |       <snapshots> | 
 |         <enabled>false</enabled> | 
 |       </snapshots> | 
 |       <id>central</id> | 
 |       <url>http://repo.maven.apache.org/maven2</url> | 
 |     </repository> | 
 |   </repositories> | 
 |  | 
 |   <build> | 
 |  | 
 |     <pluginManagement> | 
 |       <plugins> | 
 |         <plugin> | 
 |           <groupId>com.spotify</groupId> | 
 |           <artifactId>dockerfile-maven-plugin</artifactId> | 
 |           <version>${dockerfile-maven-plugin.version}</version> | 
 |           <configuration> | 
 |             <repository>${dockerfile.image.server}/${dockerfile.image.prefix}/${project.artifactId}</repository> | 
 |             <tag>${project.version}</tag> | 
 |             <useMavenSettingsForAuth>true</useMavenSettingsForAuth> | 
 |             <buildArgs> | 
 |               <JAR_FILE>${project.build.finalName}.${project.packaging}</JAR_FILE> | 
 |               <VERSION>${project.version}</VERSION> | 
 |               <NAME>${project.artifactId}</NAME> | 
 |             </buildArgs> | 
 |           </configuration> | 
 |         </plugin> | 
 |       </plugins> | 
 |     </pluginManagement> | 
 |  | 
 |     <plugins> | 
 |  | 
 |       <plugin> | 
 |         <groupId>com.spotify</groupId> | 
 |         <artifactId>dockerfile-maven-plugin</artifactId> | 
 |         <configuration> | 
 |           <skip>true</skip> | 
 |         </configuration> | 
 |       </plugin> | 
 |  | 
 |     </plugins> | 
 |  | 
 |   </build> | 
 |  | 
 | </project> |