Skip to content

Commit

Permalink
RCB-627: create rosette-api-all to combine model and json modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsuya-Tomioka committed Oct 22, 2024
1 parent 3caebea commit a580b02
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions all/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<?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 Communications</description>
<properties>
<skip-mockserver>false</skip-mockserver>
</properties>
<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>

0 comments on commit a580b02

Please sign in to comment.