forked from exasol/row-level-security-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
362 lines (362 loc) · 16.8 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>row-level-security-lua</artifactId>
<version>1.5.6</version>
<name>Exasol Row Level Security (Lua)</name>
<description>This projects provides a plug-in to the Exasol database that adds per-row access control.</description>
<url>https://github.com/exasol/row-level-security-lua/</url>
<properties>
<junit.version>5.10.2</junit.version>
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<lua.src>${basedir}/src/main/lua</lua.src>
<lua.test>${basedir}/src/test/lua</lua.test>
<lua.path>/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;./?.lua;/usr/local/lib/lua/5.1/?.lua;/usr/local/lib/lua/5.1/?/init.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua</lua.path>
<source.admin.scripts>${basedir}/src/main/lua/administration</source.admin.scripts>
<source.sql.scripts>src/main/sql</source.sql.scripts>
</properties>
<dependencies>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-jdbc</artifactId>
<version>24.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.19.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>hamcrest-resultset-matcher</artifactId>
<version>1.6.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.13</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>test-db-builder-java</artifactId>
<version>3.5.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>maven-project-version-getter</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>extension-manager-integration-test-java</artifactId>
<version>0.5.11</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Explicityl upgrade transitive dependency of extension-manager-integration-test-java to fix SSH connection to Exasol >= 8.27.0 -->
<groupId>com.exasol</groupId>
<artifactId>exasol-test-setup-abstraction-java</artifactId>
<version>2.1.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- Avoid exception running integration tests caused by wrong XML parser (xerces:xercesImpl) beeing loaded:
java.lang.IllegalArgumentException: Property 'http://javax.xml.XMLConstants/property/accessExternalDTD' is not recognized.
at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.setAttribute(Unknown Source) -->
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>4.3.1</version>
<executions>
<execution>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-path</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<!-- Build Lua Code -->
<execution>
<id>unit-test</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${project.basedir}/tools/runtests.sh</executable>
<useMavenLogger>true</useMavenLogger>
<arguments>
<argument>${project.basedir}</argument>
</arguments>
</configuration>
</execution>
<execution>
<!-- Bundle the main script (dispatcher) and the modules into a single lua package
that can be deployed as Lua adapter script. -->
<id>bundle</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>luarocks</executable>
<useMavenLogger>true</useMavenLogger>
<arguments>
<argument>--local</argument>
<argument>make</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>Administration SQL Scripts Assembler</id>
<phase>compile</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/tools/assemble_sql_scripts.sh</executable>
<useMavenLogger>true</useMavenLogger>
<arguments>
<argument>target/administration-sql-scripts-${project.version}.sql</argument>
<!-- Administration scripts: -->
<argument>${source.admin.scripts}/exa_rls_base.lua</argument>
<argument>${source.admin.scripts}/exa_identifier.lua</argument>
<argument>${source.admin.scripts}/add_rls_role.lua</argument>
<argument>${source.admin.scripts}/assign_roles_to_user.lua</argument>
<argument>${source.admin.scripts}/delete_rls_role.lua</argument>
<argument>${source.admin.scripts}/add_user_to_group.lua</argument>
<argument>${source.admin.scripts}/remove_user_from_group.lua</argument>
<argument>${source.admin.scripts}/list_all_groups.lua</argument>
<argument>${source.admin.scripts}/list_user_groups.lua</argument>
<argument>${source.admin.scripts}/list_all_roles.lua</argument>
<argument>${source.admin.scripts}/bit_positions.lua</argument>
<argument>${source.admin.scripts}/list_user_roles.lua</argument>
<argument>${source.admin.scripts}/list_users_and_roles.lua</argument>
<!-- SQL scripts -->
<argument>${source.sql.scripts}/role_mask.sql</argument>
</arguments>
</configuration>
</execution>
<!-- Build extension -->
<execution>
<id>npm-ci</id>
<phase>process-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>extension/</workingDirectory>
<executable>npm</executable>
<commandlineArgs>ci</commandlineArgs>
<useMavenLogger>false</useMavenLogger>
</configuration>
</execution>
<execution>
<id>build-extension</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>extension/</workingDirectory>
<executable>npm</executable>
<commandlineArgs>run build</commandlineArgs>
<useMavenLogger>false</useMavenLogger>
</configuration>
</execution>
<execution>
<id>unit-test-extension</id>
<phase>verify</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>extension/</workingDirectory>
<executable>npm</executable>
<commandlineArgs>run test</commandlineArgs>
<useMavenLogger>false</useMavenLogger>
</configuration>
</execution>
<execution>
<id>lint-extension</id>
<phase>verify</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>extension/</workingDirectory>
<executable>npm</executable>
<commandlineArgs>run lint</commandlineArgs>
<useMavenLogger>false</useMavenLogger>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.itsallcode</groupId>
<artifactId>openfasttrace-maven-plugin</artifactId>
<version>1.8.0</version>
<executions>
<execution>
<id>trace-requirements</id>
<goals>
<goal>trace</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<!-- Adding the Lua sources to the list of source directories is necessary
so that OFT can scan them. -->
<source>src/main/lua</source>
<source>src/test/lua</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>verify</id>
<!-- intentionally switched off the Java crawler for Lua projects -->
<phase>none</phase>
</execution>
</executions>
</plugin>
<!-- Since this is a Lua project, no production JAR should be created. Empty JAR gets skipped. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>
<plugin>
<groupId>com.github.funthomas424242</groupId>
<artifactId>plantuml-maven-plugin</artifactId>
<version>1.5.2</version>
<configuration>
<format>svg</format>
<sourceFiles>
<directory>${basedir}/doc/model/diagrams</directory>
<includes>
<include>**/*.plantuml</include>
</includes>
</sourceFiles>
</configuration>
<dependencies>
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<version>1.2024.3</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- This pseudo-plug-in configuration exists to help Eclipse's M2E to map plug-in executions.
It has no impact on a regular Maven build. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>exec</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<parent>
<artifactId>row-level-security-lua-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>1.5.6</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>