1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ ~ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ ~ contributor license agreements. See the NOTICE file distributed with
5
+ ~ this work for additional information regarding copyright ownership.
6
+ ~ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ ~ (the "License"); you may not use this file except in compliance with
8
+ ~ the License. You may obtain a copy of the License at
9
+ ~
10
+ ~ http://www.apache.org/licenses/LICENSE-2.0
11
+ ~
12
+ ~ Unless required by applicable law or agreed to in writing, software
13
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
14
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ ~ See the License for the specific language governing permissions and
16
+ ~ limitations under the License.
17
+ -->
18
+
19
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
20
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
21
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
22
+ <modelVersion >4.0.0</modelVersion >
23
+ <parent >
24
+ <groupId >ai.wanaku</groupId >
25
+ <artifactId >tools</artifactId >
26
+ <version >0.0.4-SNAPSHOT</version >
27
+ </parent >
28
+
29
+ <artifactId >wanaku-routing-exec-service</artifactId >
30
+ <name >Wanaku :: Service :: Tools :: Exec</name >
31
+
32
+ <dependencyManagement >
33
+ <dependencies >
34
+ <dependency >
35
+ <groupId >${quarkus.platform.group-id} </groupId >
36
+ <artifactId >${quarkus.platform.artifact-id}</artifactId >
37
+ <version >${quarkus.platform.version} </version >
38
+ <type >pom</type >
39
+ <scope >import</scope >
40
+ </dependency >
41
+ </dependencies >
42
+ </dependencyManagement >
43
+
44
+
45
+ <dependencies >
46
+ <dependency >
47
+ <groupId >ai.wanaku</groupId >
48
+ <artifactId >core-exchange</artifactId >
49
+ <version >${project.version} </version >
50
+ </dependency >
51
+
52
+ <dependency >
53
+ <groupId >ai.wanaku</groupId >
54
+ <artifactId >core-services</artifactId >
55
+ <version >${project.version} </version >
56
+ </dependency >
57
+
58
+ <dependency >
59
+ <groupId >ai.wanaku</groupId >
60
+ <artifactId >core-service-discovery</artifactId >
61
+ <version >${project.version} </version >
62
+ </dependency >
63
+
64
+ <dependency >
65
+ <groupId >io.quarkus</groupId >
66
+ <artifactId >quarkus-arc</artifactId >
67
+ </dependency >
68
+
69
+ <dependency >
70
+ <groupId >io.quarkus</groupId >
71
+ <artifactId >quarkus-grpc</artifactId >
72
+ </dependency >
73
+
74
+ <!-- For building containers -->
75
+ <dependency >
76
+ <groupId >io.quarkus</groupId >
77
+ <artifactId >quarkus-container-image-jib</artifactId >
78
+ </dependency >
79
+
80
+ <!-- Tool dependencies go here -->
81
+
82
+ </dependencies >
83
+
84
+ <build >
85
+ <plugins >
86
+ <plugin >
87
+ <groupId >${quarkus.platform.group-id} </groupId >
88
+ <artifactId >quarkus-maven-plugin</artifactId >
89
+ <version >${quarkus.platform.version} </version >
90
+ <extensions >true</extensions >
91
+ <executions >
92
+ <execution >
93
+ <goals >
94
+ <goal >build</goal >
95
+ <goal >generate-code</goal >
96
+ <goal >generate-code-tests</goal >
97
+ </goals >
98
+ </execution >
99
+ </executions >
100
+ </plugin >
101
+ </plugins >
102
+ </build >
103
+
104
+ <profiles >
105
+ <profile >
106
+ <id >native</id >
107
+ <activation >
108
+ <property >
109
+ <name >native</name >
110
+ </property >
111
+ </activation >
112
+ <properties >
113
+ <skipITs >false</skipITs >
114
+ <quarkus .native.enabled>true</quarkus .native.enabled>
115
+ </properties >
116
+ </profile >
117
+ <profile >
118
+ <id >dist</id >
119
+ <build >
120
+ <plugins >
121
+ <plugin >
122
+ <groupId >org.apache.maven.plugins</groupId >
123
+ <artifactId >maven-assembly-plugin</artifactId >
124
+ <version >${maven-assembly-plugin.version} </version >
125
+ <configuration >
126
+ <attach >false</attach >
127
+ <appendAssemblyId >false</appendAssemblyId >
128
+ <outputDirectory >${distribution.directory} </outputDirectory >
129
+ <workDirectory >${project.build.directory} /assembly/work</workDirectory >
130
+ </configuration >
131
+ <executions >
132
+ <execution >
133
+ <id >make-distribution</id >
134
+ <phase >package</phase >
135
+ <goals >
136
+ <goal >single</goal >
137
+ </goals >
138
+ <configuration >
139
+ <finalName >${project.artifactId} -${project.version} </finalName >
140
+ <descriptors >
141
+ <descriptor >src/main/assembly/assembly.xml</descriptor >
142
+ </descriptors >
143
+ </configuration >
144
+ </execution >
145
+ </executions >
146
+ </plugin >
147
+ </plugins >
148
+ </build >
149
+ </profile >
150
+ <profile >
151
+ <id >dist-native</id >
152
+ <activation >
153
+ <property >
154
+ <name >native</name >
155
+ </property >
156
+ </activation >
157
+ <build >
158
+ <plugins >
159
+ <plugin >
160
+ <groupId >org.apache.maven.plugins</groupId >
161
+ <artifactId >maven-assembly-plugin</artifactId >
162
+ <version >${maven-assembly-plugin.version} </version >
163
+ <configuration >
164
+ <attach >false</attach >
165
+ <appendAssemblyId >false</appendAssemblyId >
166
+ <outputDirectory >${distribution.directory} </outputDirectory >
167
+ <workDirectory >${project.build.directory} /assembly/work</workDirectory >
168
+ </configuration >
169
+ <executions >
170
+ <execution >
171
+ <id >make-native-distribution</id >
172
+ <phase >package</phase >
173
+ <goals >
174
+ <goal >single</goal >
175
+ </goals >
176
+ <configuration >
177
+ <finalName >${project.artifactId} -${project.version} -${os.detected.classifier} </finalName >
178
+ <descriptors >
179
+ <descriptor >src/main/assembly/assembly-native.xml</descriptor >
180
+ </descriptors >
181
+ </configuration >
182
+ </execution >
183
+ </executions >
184
+ </plugin >
185
+ </plugins >
186
+ </build >
187
+ </profile >
188
+ <profile >
189
+ <id >dist-windows</id >
190
+ <activation >
191
+ <os >
192
+ <family >windows</family >
193
+ </os >
194
+ </activation >
195
+ <properties >
196
+ <executable-suffix >.exe</executable-suffix >
197
+ </properties >
198
+ </profile >
199
+ </profiles >
200
+ </project >
0 commit comments