Skip to content

Commit

Permalink
update: revert changes - discard addition of memory-netty
Browse files Browse the repository at this point in the history
  • Loading branch information
prateeknima77 committed Aug 6, 2024
1 parent dd3c51d commit ce9ab8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 52 deletions.
50 changes: 0 additions & 50 deletions java/memory/memory-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
Expand Down Expand Up @@ -53,55 +52,6 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
<relocations>
<relocation>
<pattern>io.netty</pattern>
<shadedPattern>shaded.io.netty</shadedPattern>
</relocation>
</relocations>
<artifactSet>
<excludes>
<exclude>org.slf4j</exclude>
<exclude>com.google.code.findbugs</exclude>
<exclude>com.google.guava</exclude>
</excludes>
</artifactSet>
<!--to prevent the Invalid signature file error -->
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<!-- This profile turns on integration testing. It activates the failsafe plugin and will run any tests
Expand Down
3 changes: 1 addition & 2 deletions java/vector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
Expand Down Expand Up @@ -194,7 +194,6 @@
<includes>
<include>org.apache.arrow:arrow-memory-core</include>
<include>org.apache.arrow:arrow-memory-unsafe</include>
<include>org.apache.arrow:arrow-memory-netty</include>
<include>org.apache.arrow:arrow-format</include>
<include>com.google.flatbuffers:*</include>
</includes>
Expand Down

0 comments on commit ce9ab8c

Please sign in to comment.