-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
192 lines (180 loc) · 7.02 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>restheart-plugin-skeleton</artifactId>
<groupId>org.restheart</groupId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>21</maven.compiler.release>
<restheart.version>8.1.0</restheart.version>
<native.gc>--gc=serial</native.gc><!-- garbage collector 'G1' is on only availabe on Linux and it is better than 'serial' -->
<native.quickBuild>true</native.quickBuild>
</properties>
<repositories>
<repository>
<id>restheart-releases</id>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>restheart-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-commons</artifactId>
<version>${restheart.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.16.0</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<!-- maven-dependency-plugin is used to copy the external dependencies
(i.e. that are not provided by restheart.jar) to target/lib
see https://restheart.org/docs/plugins/deploy/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<!-- include dependencies of runtime and compile scopes -->
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<dependencies>
<dependency> <!-- required since it is defined as provided in default profile -->
<groupId>org.restheart</groupId>
<artifactId>restheart-commons</artifactId>
<version>${restheart.version}</version>
</dependency>
<dependency> <!-- required -->
<groupId>org.restheart</groupId>
<artifactId>restheart</artifactId>
<version>${restheart.version}</version>
</dependency>
<dependency> <!-- required -->
<groupId>org.restheart</groupId>
<artifactId>restheart-polyglot</artifactId>
<version>${restheart.version}</version>
</dependency>
<!-- OPTIONAL, uncomment to add security plugins, requires restheart-mongoclient-provider -->
<!-- <dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-security</artifactId>
<version>${restheart.version}</version>
</dependency> -->
<!-- OPTIONAL, uncomment to add rest and websocket mongodb plugins, requires restheart-mongoclient-provider -->
<!-- <dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-mongodb</artifactId>
<version>${restheart.version}</version>
</dependency> -->
<!-- OPTIONAL, uncomment to add graphql mongodb plugin, requires restheart-mongoclient-provider -->
<!-- <dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-graphql</artifactId>
<version>${restheart.version}</version>
</dependency> -->
<!-- OPTIONAL, required by restheart-security, restheart-mongodb and restheart-graphql -->
<!-- <dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-mongoclient-provider</artifactId>
<version>${restheart.version}</version>
</dependency> -->
<!-- OPTIONAL, uncomment to add metrics plugin -->
<!-- <dependency>
<groupId>org.restheart</groupId>
<artifactId>restheart-metrics</artifactId>
<version>${restheart.version}</version>
</dependency> -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.restheart.Bootstrapper</mainClass>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Build-Time>${maven.build.timestamp}</Build-Time>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.10.2</version>
<!-- See https://graalvm.github.io/native-build-tools/latest/maven-plugin.html#configuration-options -->
<configuration>
<buildArgs>
<arg>${native.gc}</arg>
</buildArgs>
<quickBuild>${native.quickBuild}</quickBuild>
</configuration>
<extensions>true</extensions>
<executions>
<execution>
<id>build-native</id>
<goals>
<goal>compile-no-fork</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>mkdir-plugins-dir</id>
<phase>package</phase>
<configuration>
<target>
<mkdir dir="./target/plugins" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>