pom.xml 2.9 KB
Newer Older
pig_冷冷's avatar
pig_冷冷 已提交
1 2
<?xml version="1.0" encoding="UTF-8"?>
<!--
3 4 5 6 7 8 9 10 11 12 13
  Copyright 1999-2018 Alibaba Group Holding Ltd.
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
       http://www.apache.org/licenses/LICENSE-2.0
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
pig_冷冷's avatar
pig_冷冷 已提交
14 15 16 17 18 19 20
<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.pig4cloud</groupId>
		<artifactId>pig</artifactId>
21
		<version>3.4.8</version>
pig_冷冷's avatar
pig_冷冷 已提交
22 23 24 25 26
	</parent>

	<artifactId>pig-register</artifactId>
	<packaging>jar</packaging>
	<name>pig-register</name>
27
	<description>nacos 注册配置中心</description>
pig_冷冷's avatar
pig_冷冷 已提交
28

29
	<properties>
30
		<nacos.version>2.0.4.RELEASE</nacos.version>
31 32
	</properties>

pig_冷冷's avatar
pig_冷冷 已提交
33 34
	<dependencies>
		<dependency>
35
			<groupId>com.pig4cloud.nacos</groupId>
pig_冷冷's avatar
pig_冷冷 已提交
36
			<artifactId>nacos-config</artifactId>
37
			<version>${nacos.version}</version>
38
		</dependency>
pig_冷冷's avatar
pig_冷冷 已提交
39
		<dependency>
40 41
			<groupId>org.apache.tomcat.embed</groupId>
			<artifactId>tomcat-embed-jasper</artifactId>
42
		</dependency>
43

44
		<dependency>
45
			<groupId>com.pig4cloud.nacos</groupId>
46
			<artifactId>nacos-naming</artifactId>
47
			<version>${nacos.version}</version>
pig_冷冷's avatar
pig_冷冷 已提交
48
		</dependency>
49 50

		<dependency>
51
			<groupId>com.pig4cloud.nacos</groupId>
52
			<artifactId>nacos-istio</artifactId>
53
			<version>${nacos.version}</version>
54
		</dependency>
pig_冷冷's avatar
pig_冷冷 已提交
55 56 57 58
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
		</dependency>
59 60 61 62 63 64

		<dependency>
			<groupId>cn.hutool</groupId>
			<artifactId>hutool-system</artifactId>
			<version>${hutool.version}</version>
		</dependency>
pig_冷冷's avatar
pig_冷冷 已提交
65 66 67 68 69 70 71
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
72 73 74 75
			<plugin>
				<groupId>io.fabric8</groupId>
				<artifactId>docker-maven-plugin</artifactId>
			</plugin>
pig_冷冷's avatar
pig_冷冷 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
		</plugins>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
				<excludes>
					<exclude>**/*.woff</exclude>
					<exclude>**/*.woff2</exclude>
					<exclude>**/*.ttf</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>false</filtering>
				<includes>
					<include>**/*.woff</include>
					<include>**/*.woff2</include>
					<include>**/*.ttf</include>
				</includes>
			</resource>
		</resources>
	</build>
</project>