Skip to content

Commit

Permalink
ORC-1545: Use orc-format 1.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjoon-hyun committed Dec 6, 2023
1 parent a2e3aa0 commit 1e5a330
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 29 deletions.
8 changes: 4 additions & 4 deletions java/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<groupId>org.apache.orc</groupId>
<artifactId>orc-shims</artifactId>
</dependency>
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-format</artifactId>
</dependency>

<!-- inter-project -->
<dependency>
Expand Down Expand Up @@ -123,10 +127,6 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
31 changes: 6 additions & 25 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
<!-- Build Properties -->
<project.build.outputTimestamp>2023-05-15T16:29:49Z</project.build.outputTimestamp>
<protobuf.version>3.25.1</protobuf.version>
<protoc.version>3.17.3</protoc.version>
<slf4j.version>2.0.9</slf4j.version>
<orc-format.version>1.0.0-SNAPSHOT</orc-format.version>
<storage-api.version>2.8.1</storage-api.version>
<surefire.version>3.0.0-M5</surefire.version>
<test.tmp.dir>${project.build.directory}/testing-tmp</test.tmp.dir>
Expand All @@ -87,6 +87,11 @@
<dependencyManagement>
<dependencies>
<!-- intra-project dependencies -->
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-format</artifactId>
<version>${orc-format.version}</version>
</dependency>
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-shims</artifactId>
Expand Down Expand Up @@ -480,30 +485,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId>
<version>3.11.4</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<protocVersion>${protoc.version}</protocVersion>
<protocArtifact>com.google.protobuf:protoc:${protoc.version}</protocArtifact>
<addSources>none</addSources>
<includeDirectories>
<include>../../proto</include>
</includeDirectories>
<inputDirectories>
<include>../../proto</include>
</inputDirectories>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@

<dependencies>
<!-- intra-project -->
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-format</artifactId>
</dependency>
<dependency>
<groupId>org.apache.orc</groupId>
<artifactId>orc-shims</artifactId>
Expand Down

0 comments on commit 1e5a330

Please sign in to comment.