Skip to content

Commit 0b04278

Browse files
Merge pull request #266 from rosette-api/RCB-627-all-jar
RCB-627: create rosette-api-all to combine model and json modules
2 parents 3caebea + 6c91d5b commit 0b04278

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed

all/pom.xml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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 all modules combined</description>
27+
<dependencies>
28+
<dependency>
29+
<groupId>com.basistech</groupId>
30+
<artifactId>common-api</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.basistech.rosette</groupId>
34+
<artifactId>rosette-api</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.basistech</groupId>
43+
<artifactId>adm-json</artifactId>
44+
</dependency>
45+
</dependencies>
46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-shade-plugin</artifactId>
51+
<executions>
52+
<execution>
53+
<id>shade</id>
54+
<goals>
55+
<goal>shade</goal>
56+
</goals>
57+
<phase>package</phase>
58+
<configuration>
59+
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
60+
<artifactSet>
61+
<includes>
62+
<include>com.basistech.*</include>
63+
</includes>
64+
</artifactSet>
65+
</configuration>
66+
</execution>
67+
</executions>
68+
</plugin>
69+
</plugins>
70+
</build>
71+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
<module>json</module>
5858
<module>common</module>
5959
<module>api</module>
60+
<module>all</module>
6061
<module>examples</module>
6162
<module>release</module>
6263
</modules>

0 commit comments

Comments
 (0)