Commit 54e6f10 1 parent 01561e8 commit 54e6f10 Copy full SHA for 54e6f10
File tree 2 files changed +42
-0
lines changed
2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 21
21
22
22
<!-- Module-specific dependencies -->
23
23
<dependencies >
24
+ <!-- dependency>
25
+ <groupId>org.springframework.boot</groupId>
26
+ <artifactId>spring-boot</artifactId>
27
+ <version>${spring.boot.version}</version>
28
+ </dependency>
29
+ <dependency>
30
+ <groupId>org.springframework.boot</groupId>
31
+ <artifactId>spring-boot-starter-test</artifactId>
32
+ <version>${spring.boot.version}</version>
33
+ <scope>test</scope>
34
+ </dependency-->
24
35
<dependency >
25
36
<groupId >org.jooq</groupId >
26
37
<artifactId >jooq</artifactId >
34
45
</dependencies >
35
46
<build >
36
47
<plugins >
48
+ <plugin >
49
+ <groupId >org.springframework.boot</groupId >
50
+ <artifactId >spring-boot-maven-plugin</artifactId >
51
+ <version >${spring.boot.version} </version >
52
+ <configuration >
53
+ <skip >true</skip >
54
+ </configuration >
55
+ </plugin >
37
56
<plugin >
38
57
<groupId >org.jooq</groupId >
39
58
<artifactId >jooq-codegen-maven</artifactId >
Original file line number Diff line number Diff line change 8
8
<version >0.0.1-SNAPSHOT</version >
9
9
<description >Furizon' s backend project</description >
10
10
<packaging >pom</packaging > <!-- Specifies that it's a parent POM -->
11
+
11
12
<url />
12
13
<licenses >
13
14
<license />
67
68
</dependency >
68
69
</dependencies >
69
70
<build >
71
+ <pluginManagement >
72
+ <plugins >
73
+ <plugin >
74
+ <groupId >org.springframework.boot</groupId >
75
+ <artifactId >spring-boot-maven-plugin</artifactId >
76
+ <version >${spring.boot.version} </version >
77
+ </plugin >
78
+ </plugins >
79
+ </pluginManagement >
70
80
<plugins >
81
+ <plugin >
82
+ <artifactId >maven-assembly-plugin</artifactId >
83
+ <configuration >
84
+ <archive >
85
+ <manifest >
86
+ <mainClass >net.furizon.backend.BackendApplication</mainClass >
87
+ </manifest >
88
+ </archive >
89
+ <descriptorRefs >
90
+ <descriptorRef >jar-with-dependencies</descriptorRef >
91
+ </descriptorRefs >
92
+ </configuration >
93
+ </plugin >
71
94
<plugin >
72
95
<groupId >org.apache.maven.plugins</groupId >
73
96
<artifactId >maven-compiler-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments