Skip to content

Commit e06aa6d

Browse files
committedMay 15, 2024··
fix: relaxed json parsing in queries
1 parent d2364f4 commit e06aa6d

File tree

1 file changed

+20
-0
lines changed
  • server/api-service/lowcoder-server

1 file changed

+20
-0
lines changed
 

‎server/api-service/lowcoder-server/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,26 @@
270270
<configuration>
271271
<outputDirectory>${assembly.lib.directory}</outputDirectory>
272272
<includeScope>runtime</includeScope>
273+
<excludeArtifactIds>rjson</excludeArtifactIds>
274+
</configuration>
275+
</execution>
276+
<execution>
277+
<id>copy-rjson-snapshot</id>
278+
<phase>package</phase>
279+
<goals>
280+
<goal>copy</goal>
281+
</goals>
282+
<configuration>
283+
<artifactItems>
284+
<artifactItem>
285+
<groupId>tv.twelvetone.rjson</groupId>
286+
<artifactId>rjson</artifactId>
287+
<version>LATEST</version>
288+
<overWrite>true</overWrite>
289+
<outputDirectory>${assembly.lib.directory}</outputDirectory>
290+
</artifactItem>
291+
</artifactItems>
292+
<useBaseVersion>false</useBaseVersion>
273293
</configuration>
274294
</execution>
275295
</executions>

0 commit comments

Comments
 (0)
Please sign in to comment.