11<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4- <modelVersion >4.0.0</modelVersion >
5- <groupId >com.baeldung</groupId >
6- <artifactId >discord4j</artifactId >
7- <version >0.0.1-SNAPSHOT</version >
8- <name >discord4j</name >
9- <description >Demo Discord bot using Discord4J + Spring Boot</description >
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <groupId >com.baeldung</groupId >
7+ <artifactId >discord4j</artifactId >
8+ <version >0.0.1-SNAPSHOT</version >
9+ <name >discord4j</name >
10+ <description >Demo Discord bot using Discord4J + Spring Boot</description >
1011
1112 <parent >
1213 <groupId >com.baeldung</groupId >
1516 <relativePath >../parent-boot-2</relativePath >
1617 </parent >
1718
18- <dependencies >
19- <dependency >
20- <groupId >org.springframework.boot</groupId >
21- <artifactId >spring-boot-starter</artifactId >
22- </dependency >
23- <dependency >
24- <groupId >org.springframework.boot</groupId >
25- <artifactId >spring-boot-starter-webflux</artifactId >
26- </dependency >
27- <dependency >
28- <groupId >org.springframework.boot</groupId >
29- <artifactId >spring-boot-starter-actuator</artifactId >
30- </dependency >
19+ <dependencies >
20+ <dependency >
21+ <groupId >org.springframework.boot</groupId >
22+ <artifactId >spring-boot-starter</artifactId >
23+ </dependency >
24+ <dependency >
25+ <groupId >org.springframework.boot</groupId >
26+ <artifactId >spring-boot-starter-webflux</artifactId >
27+ </dependency >
28+ <dependency >
29+ <groupId >org.springframework.boot</groupId >
30+ <artifactId >spring-boot-starter-actuator</artifactId >
31+ </dependency >
32+ <dependency >
33+ <groupId >org.springframework.boot</groupId >
34+ <artifactId >spring-boot-starter-test</artifactId >
35+ <scope >test</scope >
36+ <exclusions >
37+ <exclusion >
38+ <groupId >org.junit.vintage</groupId >
39+ <artifactId >junit-vintage-engine</artifactId >
40+ </exclusion >
41+ </exclusions >
42+ </dependency >
43+ <dependency >
44+ <groupId >com.discord4j</groupId >
45+ <artifactId >discord4j-core</artifactId >
46+ <version >3.1.1</version >
47+ </dependency >
48+ </dependencies >
3149
32- <dependency >
33- <groupId >org.springframework.boot</groupId >
34- <artifactId >spring-boot-starter-test</artifactId >
35- <scope >test</scope >
36- <exclusions >
37- <exclusion >
38- <groupId >org.junit.vintage</groupId >
39- <artifactId >junit-vintage-engine</artifactId >
40- </exclusion >
41- </exclusions >
42- </dependency >
50+ <build >
51+ <plugins >
52+ <plugin >
53+ <groupId >org.springframework.boot</groupId >
54+ <artifactId >spring-boot-maven-plugin</artifactId >
55+ </plugin >
56+ <plugin >
57+ <groupId >org.apache.maven.plugins</groupId >
58+ <artifactId >maven-compiler-plugin</artifactId >
59+ <configuration >
60+ <source >1.8</source >
61+ <target >1.8</target >
62+ </configuration >
63+ </plugin >
64+ </plugins >
65+ </build >
4366
44- <dependency >
45- <groupId >com.discord4j</groupId >
46- <artifactId >discord4j-core</artifactId >
47- <version >3.1.1</version >
48- </dependency >
49- </dependencies >
50-
51- <build >
52- <plugins >
53- <plugin >
54- <groupId >org.springframework.boot</groupId >
55- <artifactId >spring-boot-maven-plugin</artifactId >
56- </plugin >
57- <plugin >
58- <groupId >org.apache.maven.plugins</groupId >
59- <artifactId >maven-compiler-plugin</artifactId >
60- <configuration >
61- <source >1.8</source >
62- <target >1.8</target >
63- </configuration >
64- </plugin >
65- </plugins >
66- </build >
67-
6867 <properties >
6968 <java .version>1.8</java .version>
7069 </properties >
7170
72- </project >
71+ </project >
0 commit comments