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+ <parent >
7+ <groupId >modelengine.fit.jade</groupId >
8+ <artifactId >app-builder-plugin-parent</artifactId >
9+ <version >1.0.0-SNAPSHOT</version >
10+ </parent >
11+
12+ <groupId >modelengine.fit.jade.plugin</groupId >
13+ <artifactId >aipp-domain-division</artifactId >
14+
15+ <dependencies >
16+ <!-- FIT -->
17+ <dependency >
18+ <groupId >org.fitframework</groupId >
19+ <artifactId >fit-api</artifactId >
20+ </dependency >
21+ <dependency >
22+ <groupId >org.fitframework.service</groupId >
23+ <artifactId >fit-http-classic</artifactId >
24+ </dependency >
25+ <dependency >
26+ <groupId >org.fitframework</groupId >
27+ <artifactId >fit-util</artifactId >
28+ </dependency >
29+
30+ <!-- Services -->
31+ <dependency >
32+ <groupId >modelengine.jade.service</groupId >
33+ <artifactId >aipp-domain-division-service</artifactId >
34+ <version >1.0.0-SNAPSHOT</version >
35+ </dependency >
36+ <dependency >
37+ <groupId >modelengine.fit.jade.service</groupId >
38+ <artifactId >authentication-service</artifactId >
39+ </dependency >
40+ <dependency >
41+ <groupId >modelengine.fit.jade.service</groupId >
42+ <artifactId >common-service</artifactId >
43+ <version >1.0.0-SNAPSHOT</version >
44+ </dependency >
45+
46+ <!-- Third-party -->
47+ <dependency >
48+ <groupId >org.projectlombok</groupId >
49+ <artifactId >lombok</artifactId >
50+ </dependency >
51+ <dependency >
52+ <groupId >org.fitframework.integration</groupId >
53+ <artifactId >fit-mybatis</artifactId >
54+ </dependency >
55+ <dependency >
56+ <groupId >org.postgresql</groupId >
57+ <artifactId >postgresql</artifactId >
58+ </dependency >
59+ <dependency >
60+ <groupId >org.mybatis</groupId >
61+ <artifactId >mybatis</artifactId >
62+ </dependency >
63+ <dependency >
64+ <groupId >com.alibaba</groupId >
65+ <artifactId >druid</artifactId >
66+ </dependency >
67+ <dependency >
68+ <groupId >org.fitframework.integration</groupId >
69+ <artifactId >fit-druid</artifactId >
70+ </dependency >
71+ <dependency >
72+ <groupId >com.fasterxml.jackson.core</groupId >
73+ <artifactId >jackson-databind</artifactId >
74+ </dependency >
75+
76+ <!-- Test -->
77+ <dependency >
78+ <groupId >org.junit.jupiter</groupId >
79+ <artifactId >junit-jupiter</artifactId >
80+ <scope >test</scope >
81+ </dependency >
82+ <dependency >
83+ <groupId >org.mockito</groupId >
84+ <artifactId >mockito-inline</artifactId >
85+ <scope >test</scope >
86+ </dependency >
87+ <dependency >
88+ <groupId >org.assertj</groupId >
89+ <artifactId >assertj-core</artifactId >
90+ <scope >test</scope >
91+ </dependency >
92+ <dependency >
93+ <groupId >org.fitframework</groupId >
94+ <artifactId >fit-test-framework</artifactId >
95+ <scope >test</scope >
96+ </dependency >
97+ <dependency >
98+ <groupId >com.h2database</groupId >
99+ <artifactId >h2</artifactId >
100+ <scope >test</scope >
101+ </dependency >
102+ </dependencies >
103+
104+ <build >
105+ <plugins >
106+ <plugin >
107+ <groupId >org.fitframework</groupId >
108+ <artifactId >fit-build-maven-plugin</artifactId >
109+ <version >${fit.version} </version >
110+ <configuration >
111+ <category >user</category >
112+ <level >3</level >
113+ </configuration >
114+ <executions >
115+ <execution >
116+ <id >build-plugin</id >
117+ <goals >
118+ <goal >build-plugin</goal >
119+ </goals >
120+ </execution >
121+ <execution >
122+ <id >package-plugin</id >
123+ <goals >
124+ <goal >package-plugin</goal >
125+ </goals >
126+ </execution >
127+ </executions >
128+ </plugin >
129+ <plugin >
130+ <groupId >org.apache.maven.plugins</groupId >
131+ <artifactId >maven-antrun-plugin</artifactId >
132+ <version >${maven.antrun.version} </version >
133+ <executions >
134+ <execution >
135+ <phase >install</phase >
136+ <configuration >
137+ <target >
138+ <copy file =" ${project.build.directory}/${project.build.finalName}.jar"
139+ todir =" ../../../build/plugins" />
140+ </target >
141+ </configuration >
142+ <goals >
143+ <goal >run</goal >
144+ </goals >
145+ </execution >
146+ </executions >
147+ </plugin >
148+ </plugins >
149+ </build >
150+ </project >
0 commit comments