Skip to content

Commit

Permalink
Merge pull request #39 from lalithkota/develop
Browse files Browse the repository at this point in the history
SMTs: Fixed META-INF structure
  • Loading branch information
lalithkota authored Oct 23, 2024
2 parents 1ef9494 + 079a57a commit 66eb8f8
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions opensearch-kafka-connector/kafka-connect-transforms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@
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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<licenses>
<license>
<name>MPL 2.0</name>
Expand Down Expand Up @@ -40,7 +33,10 @@
<url>https://github.com/openg2p/openg2p-reporting</url>

<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>

<dependencies>
Expand Down Expand Up @@ -128,13 +124,21 @@
</executions>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>net/thisptr/jackson/jq/jq.json</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>META-INF</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/*LICENSE*</exclude>
<exclude>META-INF/*NOTICE*</exclude>
<exclude>META-INF/*DEPENDENCIES*</exclude>
<exclude>META-INF/*MANIFEST*</exclude>
<exclude>**/module-info.class</exclude>
</excludes>
</filter>
</filters>
Expand Down

0 comments on commit 66eb8f8

Please sign in to comment.