Skip to content

Commit

Permalink
Fix build and format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheDuong committed Oct 21, 2021
1 parent e87604e commit 121d744
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies {
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
implementation project(':airbyte-integrations:connectors:source-relational-db')
implementation project(':airbyte-integrations:connectors:source-mongodb-v2')
implementation 'org.mongodb:mongodb-driver-sync:4.3.0'

integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-source-test')
integrationTestJavaImplementation project(':airbyte-integrations:connectors:source-mongodb-strict-encrypt')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ public String getDriverClass() {
return ScaffoldJavaJdbcSource.DRIVER_CLASS;
}

@Override
public AbstractJdbcSource getJdbcSource() {
// TODO
return null;
}

@AfterAll
static void cleanUp() {
// TODO close the container. Ex: "container.close();"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
Status,
Type,
)

# helpers
from airbyte_cdk.sources import Source

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import com.google.common.collect.ImmutableMap;
import io.airbyte.config.persistence.ConfigRepository;
import io.airbyte.oauth.flows.AsanaOAuthFlow;
import io.airbyte.oauth.flows.SalesforceOAuthFlow;
import io.airbyte.oauth.flows.FacebookMarketingOAuthFlow;
import io.airbyte.oauth.flows.SalesforceOAuthFlow;
import io.airbyte.oauth.flows.TrelloOAuthFlow;
import io.airbyte.oauth.flows.google.GoogleAdsOAuthFlow;
import io.airbyte.oauth.flows.google.GoogleAnalyticsOAuthFlow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
import org.apache.http.client.utils.URIBuilder;

/**
* Following docs from https://help.salesforce.com/s/articleView?language=en_US&id=sf.remoteaccess_oauth_web_server_flow.htm
* Following docs from
* https://help.salesforce.com/s/articleView?language=en_US&id=sf.remoteaccess_oauth_web_server_flow.htm
*/
public class SalesforceOAuthFlow extends BaseOAuthFlow {

Expand Down

0 comments on commit 121d744

Please sign in to comment.