Skip to content

Commit a580b02

Browse files
RCB-627: create rosette-api-all to combine model and json modules
1 parent 3caebea commit a580b02

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

all/pom.xml

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright 2018-2024 Basis Technology Corp.
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
<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">
18+
<modelVersion>4.0.0</modelVersion>
19+
<parent>
20+
<groupId>com.basistech.rosette</groupId>
21+
<artifactId>rosette-api-java-binding</artifactId>
22+
<version>1.31.0-SNAPSHOT</version>
23+
</parent>
24+
<artifactId>rosette-api-all</artifactId>
25+
<name>rosette-api-all</name>
26+
<description>Rosette API Communications</description>
27+
<properties>
28+
<skip-mockserver>false</skip-mockserver>
29+
</properties>
30+
<dependencies>
31+
<dependency>
32+
<groupId>com.basistech</groupId>
33+
<artifactId>common-api</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.basistech.rosette</groupId>
37+
<artifactId>rosette-api</artifactId>
38+
<version>${project.version}</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.fasterxml.jackson.core</groupId>
42+
<artifactId>jackson-databind</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.basistech</groupId>
46+
<artifactId>adm-json</artifactId>
47+
</dependency>
48+
</dependencies>
49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-shade-plugin</artifactId>
54+
<executions>
55+
<execution>
56+
<id>shade</id>
57+
<goals>
58+
<goal>shade</goal>
59+
</goals>
60+
<phase>package</phase>
61+
<configuration>
62+
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
63+
<artifactSet>
64+
<includes>
65+
<include>com.basistech.*</include>
66+
</includes>
67+
</artifactSet>
68+
</configuration>
69+
</execution>
70+
</executions>
71+
</plugin>
72+
</plugins>
73+
</build>
74+
</project>

0 commit comments

Comments
 (0)