Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MINOR-UPDATE]: Drop conjars repo and revert ci.yml runner image to ubuntu-latest #2782

Merged
merged 6 commits into from
Apr 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on: [push, pull_request]
jobs:
build:
name: Main Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 150
strategy:
matrix:
Expand Down
8 changes: 8 additions & 0 deletions contrib/storage-splunk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
<okhttp.version>4.5.0</okhttp.version>
</properties>

<repositories>
<repository>
<id>splunk-artifactory</id>
<name>Splunk Releases</name>
<url>https://splunk.jfrog.io/artifactory/ext-releases-local</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.apache.drill.exec</groupId>
Expand Down
4 changes: 3 additions & 1 deletion distribution/src/main/resources/drill-override-example.conf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ drill.exec: {
threads: 1
}
},
use.ip : false
use.ip : false,
bind_addr: 0.0.0.0
},
operator: {
packages += "org.apache.drill.exec.physical.config"
Expand Down Expand Up @@ -95,6 +96,7 @@ drill.exec: {
http: {
enabled: true,
ssl_enabled: false,
bind_addr: 0.0.0.0,
port: 8047
session_max_idle_secs: 3600, # Default value 1hr
cors: {
Expand Down
2 changes: 1 addition & 1 deletion exec/java-exec/src/test/resources/drill-udf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<jar.finalName>${project.name}</jar.finalName>
<custom.buildDirectory>${project.basedir}/target</custom.buildDirectory>
<drill.version>1.17.0</drill.version>
<drill.version>1.21.0</drill.version>
<include.files>**/*.java</include.files>
<include.resources>**/*.conf</include.resources>
</properties>
Expand Down
24 changes: 2 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<shaded.guava.version>28.2-jre</shaded.guava.version>
<guava.version>30.1.1-jre</guava.version>
<forkCount>1</forkCount>
<parquet.version>1.12.2</parquet.version>
<parquet.format.version>2.8.0</parquet.format.version>
<parquet.version>1.12.3</parquet.version>
<parquet.format.version>2.9.0</parquet.format.version>
<calcite.groupId>org.apache.calcite</calcite.groupId>
<calcite.version>1.34.0</calcite.version>
<avatica.version>1.23.0</avatica.version>
Expand Down Expand Up @@ -175,21 +175,6 @@
</mailingLists>

<repositories>
<repository>
<id>conjars</id>
<name>Conjars</name>
<url>https://conjars.org/repo</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>

<repository>
<id>mapr-releases</id>
<url>https://repository.mapr.com/maven/</url>
Expand Down Expand Up @@ -218,11 +203,6 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>splunk-artifactory</id>
<name>Splunk Releases</name>
<url>https://splunk.jfrog.io/artifactory/ext-releases-local</url>
</repository>
</repositories>

<issueManagement>
Expand Down