| <?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> |
| |
| <parent> |
| <groupId>com.supwisdom.buildcommons</groupId> |
| <artifactId>spring-cloud-parent</artifactId> |
| <version>Finchley.RELEASE-1.1</version> |
| </parent> |
| |
| <groupId>com.supwisdom.institute</groupId> |
| <artifactId>sw-backend-gateway</artifactId> |
| <version>0.0.2-SNAPSHOT</version> |
| <packaging>jar</packaging> |
| |
| <name>Supwisdom Backend Framework Gateway</name> |
| <description>Supwisdom Backend Framework Gateway project</description> |
| |
| <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> |
| |
| <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> |
| |
| <infras.version>0.1.2-SNAPSHOT</infras.version> |
| |
| <io.springfox.version>2.9.2</io.springfox.version> |
| |
| <mybatis.spring.boot.version>1.3.1</mybatis.spring.boot.version> |
| |
| <start-class>com.supwisdom.institute.backend.gateway.Application</start-class> |
| </properties> |
| |
| <distributionManagement> |
| <repository> |
| <id>supwisdom-releases</id> |
| <name>internal release</name> |
| <url>https://app.supwisdom.com/nexus/content/repositories/releases</url> |
| </repository> |
| <snapshotRepository> |
| <id>supwisdom-snapshots</id> |
| <name>internal snapshots</name> |
| <url>https://app.supwisdom.com/nexus/content/repositories/snapshots</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <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> |
| |
| <dependencyManagement> |
| <dependencies> |
| |
| <dependency> |
| <groupId>com.supwisdom.infras</groupId> |
| <artifactId>infras-bom</artifactId> |
| <version>${infras.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.supwisdom.institute</groupId> |
| <artifactId>sw-backend-common-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.supwisdom.institute</groupId> |
| <artifactId>sw-backend-common-utils</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.supwisdom.institute</groupId> |
| <artifactId>sw-backend-common-framework</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>com.alibaba</groupId> |
| <artifactId>fastjson</artifactId> |
| <version>1.2.56</version> |
| </dependency> |
| |
| |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| </dependency> |
| |
| <!-- 微服务 健康监控 --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-actuator</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-webflux</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.cloud</groupId> |
| <artifactId>spring-cloud-starter-gateway</artifactId> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpcore</artifactId> |
| </dependency> |
| |
| |
| <!-- <dependency> |
| <groupId>com.supwisdom.infras</groupId> |
| <artifactId>infras-online-doc</artifactId> |
| </dependency> --> |
| |
| |
| <dependency> |
| <groupId>com.supwisdom.infras</groupId> |
| <artifactId>infras-security</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-security</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.jsonwebtoken</groupId> |
| <artifactId>jjwt</artifactId> |
| <version>0.9.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.security</groupId> |
| <artifactId>spring-security-cas</artifactId> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>com.supwisdom.institute</groupId> |
| <artifactId>sw-backend-common-framework</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.data</groupId> |
| <artifactId>spring-data-redis</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>redis.clients</groupId> |
| <artifactId>jedis</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.alibaba</groupId> |
| <artifactId>fastjson</artifactId> |
| </dependency> |
| |
| |
| <!-- <dependency> |
| <groupId>io.springfox</groupId> |
| <artifactId>springfox-swagger2</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.springfox</groupId> |
| <artifactId>springfox-swagger-ui</artifactId> |
| </dependency> --> |
| |
| |
| <!-- 热部署,无需重启项目 --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-devtools</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <finalName>${project.artifactId}</finalName> |
| |
| <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>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-failsafe-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| </plugin> |
| |
| <plugin> |
| <groupId>com.spotify</groupId> |
| <artifactId>dockerfile-maven-plugin</artifactId> |
| <configuration> |
| <skip>false</skip> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| |
| </build> |
| |
| </project> |