Skip to content

Commit

Permalink
Merge pull request #266 from rosette-api/RCB-627-all-jar
Browse files Browse the repository at this point in the history
RCB-627: create rosette-api-all to combine model and json modules
  • Loading branch information
Katsuya-Tomioka authored Oct 29, 2024
2 parents 3caebea + 6c91d5b commit 0b04278
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
71 changes: 71 additions & 0 deletions all/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2018-2024 Basis Technology Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>
<parent>
<groupId>com.basistech.rosette</groupId>
<artifactId>rosette-api-java-binding</artifactId>
<version>1.31.0-SNAPSHOT</version>
</parent>
<artifactId>rosette-api-all</artifactId>
<name>rosette-api-all</name>
<description>Rosette API all modules combined</description>
<dependencies>
<dependency>
<groupId>com.basistech</groupId>
<artifactId>common-api</artifactId>
</dependency>
<dependency>
<groupId>com.basistech.rosette</groupId>
<artifactId>rosette-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.basistech</groupId>
<artifactId>adm-json</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>shade</id>
<goals>
<goal>shade</goal>
</goals>
<phase>package</phase>
<configuration>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<artifactSet>
<includes>
<include>com.basistech.*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<module>json</module>
<module>common</module>
<module>api</module>
<module>all</module>
<module>examples</module>
<module>release</module>
</modules>
Expand Down

0 comments on commit 0b04278

Please sign in to comment.