blob: d3c0f58e95fa96c2fca24bcbf3e4eebf4e51665b [file] [log] [blame]
刘洪青e071d362019-08-16 09:39:49 +08001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
刘洪青e071d362019-08-16 09:39:49 +08006 <groupId>com.supwisdom.institute</groupId>
7 <artifactId>sw-backend-parent</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +08008 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +08009 <packaging>pom</packaging>
10
11 <name>Supwisdom Backend Framework Parent</name>
12 <description>Supwisdom Backend Framework Parent project</description>
13
刘洪青ffe2f412019-10-11 10:25:26 +080014 <modules>
15 <module>common</module>
刘洪青e071d362019-08-16 09:39:49 +080016
刘洪青ffe2f412019-10-11 10:25:26 +080017 <module>thirdparty-agent</module>
刘洪青e071d362019-08-16 09:39:49 +080018
刘洪青ffe2f412019-10-11 10:25:26 +080019 <module>admin-sa</module>
20 <module>biz-sa</module>
刘洪青e071d362019-08-16 09:39:49 +080021
刘洪青ffe2f412019-10-11 10:25:26 +080022 <module>admin-bff</module>
刘洪青e071d362019-08-16 09:39:49 +080023
刘洪青ffe2f412019-10-11 10:25:26 +080024 <module>gateway</module>
25 </modules>
刘洪青e071d362019-08-16 09:39:49 +080026
刘洪青db144ec2019-10-11 14:25:14 +080027 <properties>
28 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29 <java.version>1.8</java.version>
30
31 <argLine>-Dfile.encoding=UTF-8</argLine>
32
33 <downloadSources>true</downloadSources>
34 <downloadJavadocs>true</downloadJavadocs>
35
36 <maven.compiler.source>${java.version}</maven.compiler.source>
37 <maven.compiler.target>${java.version}</maven.compiler.target>
38
39 <maven.deploy.skip>true</maven.deploy.skip>
40
41 <dockerfile-maven-plugin.version>1.4.8</dockerfile-maven-plugin.version>
42 <dockerfile.image.server>harbor.supwisdom.com</dockerfile.image.server>
43 <dockerfile.image.prefix>sw-admin-framework</dockerfile.image.prefix>
44 </properties>
45
46 <repositories>
47 <repository>
48 <snapshots>
49 <enabled>true</enabled>
50 </snapshots>
51 <id>supwisdom</id>
52 <url>https://app.supwisdom.com/nexus/content/groups/public/</url>
53 </repository>
54 <repository>
55 <snapshots>
56 <enabled>false</enabled>
57 </snapshots>
58 <id>central</id>
59 <url>http://repo.maven.apache.org/maven2</url>
60 </repository>
61 </repositories>
62
63 <build>
64
65 <pluginManagement>
66 <plugins>
67 <plugin>
68 <groupId>com.spotify</groupId>
69 <artifactId>dockerfile-maven-plugin</artifactId>
70 <version>${dockerfile-maven-plugin.version}</version>
71 <configuration>
72 <repository>${dockerfile.image.server}/${dockerfile.image.prefix}/${project.artifactId}</repository>
73 <tag>${project.version}</tag>
74 <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
75 <buildArgs>
76 <JAR_FILE>${project.build.finalName}.${project.packaging}</JAR_FILE>
77 <VERSION>${project.version}</VERSION>
78 <NAME>${project.artifactId}</NAME>
79 </buildArgs>
80 </configuration>
81 </plugin>
82 </plugins>
83 </pluginManagement>
84
85 <plugins>
86
87 <plugin>
88 <groupId>com.spotify</groupId>
89 <artifactId>dockerfile-maven-plugin</artifactId>
90 <configuration>
91 <skip>true</skip>
92 </configuration>
93 </plugin>
94
95 </plugins>
96
97 </build>
刘洪青e071d362019-08-16 09:39:49 +080098
99</project>