1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
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 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <parent >
7+ <groupId >com.intellias</groupId >
8+ <artifactId >golden-example</artifactId >
9+ <version >0.0.1-SNAPSHOT</version >
10+ <relativePath >../pom.xml</relativePath >
11+ </parent >
12+
13+ <artifactId >exe</artifactId >
14+ <packaging >jar</packaging >
15+
16+ <properties >
17+ <maven .compiler.source>17</maven .compiler.source>
18+ <maven .compiler.target>17</maven .compiler.target>
19+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20+ </properties >
21+
22+ <dependencies >
23+ <dependency >
24+ <groupId >com.intellias</groupId >
25+ <artifactId >controller</artifactId >
26+ <version >0.0.1-SNAPSHOT</version >
27+ <scope >compile</scope >
28+ </dependency >
29+ <dependency >
30+ <groupId >com.intellias</groupId >
31+ <artifactId >service-impl</artifactId >
32+ <version >0.0.1-SNAPSHOT</version >
33+ <scope >compile</scope >
34+ </dependency >
35+ <dependency >
36+ <groupId >com.intellias</groupId >
37+ <artifactId >repository-impl</artifactId >
38+ <version >0.0.1-SNAPSHOT</version >
39+ <scope >compile</scope >
40+ </dependency >
41+ </dependencies >
42+
43+ <build >
44+ <plugins >
45+ <plugin >
46+ <groupId >org.springframework.boot</groupId >
47+ <artifactId >spring-boot-maven-plugin</artifactId >
48+ <configuration >
49+ <image >
50+ <name >intellias.com/golden_example</name >
51+ </image >
52+ </configuration >
53+ </plugin >
54+ </plugins >
55+ </build >
56+
57+ </project >
0 commit comments