|
| 1 | +<?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 | + |
| 6 | + <groupId>cn.netbuffer</groupId> |
| 7 | + <artifactId>spring-boot-websocket-demo</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>spring-boot-websocket-demo</name> |
| 12 | + <url>https://github.com/netbuffer/spring-boot-websocket-demo</url> |
| 13 | + <description>spring-boot websocket相关技术测试</description> |
| 14 | + |
| 15 | + <repositories> |
| 16 | + <repository> |
| 17 | + <id>spring-snapshots</id> |
| 18 | + <name>Spring snapshots</name> |
| 19 | + <url>https://repo.spring.io/libs-release</url> |
| 20 | + <snapshots> |
| 21 | + <enabled>true</enabled> |
| 22 | + </snapshots> |
| 23 | + </repository> |
| 24 | + </repositories> |
| 25 | + |
| 26 | + <developers> |
| 27 | + <developer> |
| 28 | + <name>netbuffer</name> |
| 29 | + <email>javawiki@163.com</email> |
| 30 | + <url>https://github.com/netbuffer</url> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
| 34 | + <parent> |
| 35 | + <groupId>org.springframework.boot</groupId> |
| 36 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 37 | + <version>2.4.5</version> |
| 38 | + <relativePath/> |
| 39 | + </parent> |
| 40 | + |
| 41 | + |
| 42 | + <properties> |
| 43 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 44 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 45 | + <java.version>1.8</java.version> |
| 46 | + </properties> |
| 47 | + |
| 48 | + <dependencies> |
| 49 | + <dependency> |
| 50 | + <groupId>org.springframework.boot</groupId> |
| 51 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-starter-web</artifactId> |
| 56 | + <exclusions> |
| 57 | + <exclusion> |
| 58 | + <groupId>org.springframework.boot</groupId> |
| 59 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 60 | + </exclusion> |
| 61 | + </exclusions> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.springframework.boot</groupId> |
| 65 | + <artifactId>spring-boot-starter-undertow</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.springframework.boot</groupId> |
| 69 | + <artifactId>spring-boot-starter-websocket</artifactId> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-devtools</artifactId> |
| 74 | + <scope>runtime</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.projectlombok</groupId> |
| 78 | + <artifactId>lombok</artifactId> |
| 79 | + <optional>true</optional> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.springframework.boot</groupId> |
| 83 | + <artifactId>spring-boot-starter-test</artifactId> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>cn.netbuffer</groupId> |
| 88 | + <artifactId>print-server-address</artifactId> |
| 89 | + <version>2.1.0</version> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 93 | + <artifactId>jackson-dataformat-xml</artifactId> |
| 94 | + <version>2.10.3</version> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 98 | + <artifactId>jackson-core</artifactId> |
| 99 | + <version>2.10.3</version> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>junit</groupId> |
| 103 | + <artifactId>junit</artifactId> |
| 104 | + <version>4.13.2</version> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + </dependencies> |
| 108 | + |
| 109 | + <build> |
| 110 | + <finalName>${project.name}</finalName> |
| 111 | + <resources> |
| 112 | + <resource> |
| 113 | + <directory>src/main/resources</directory> |
| 114 | + <filtering>true</filtering> |
| 115 | + </resource> |
| 116 | + </resources> |
| 117 | + <plugins> |
| 118 | + <plugin> |
| 119 | + <groupId>pl.project13.maven</groupId> |
| 120 | + <artifactId>git-commit-id-plugin</artifactId> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <groupId>org.springframework.boot</groupId> |
| 124 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-help-plugin</artifactId> |
| 129 | + <version>3.1.1</version> |
| 130 | + </plugin> |
| 131 | + </plugins> |
| 132 | + </build> |
| 133 | + |
| 134 | +</project> |
0 commit comments