-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [WIP] Update xlang kinesis to v2 * cleanup * Add missed file * Fix up * Fix up * Fix up * fix * fmt * Fix test * lint * Add serializer * Add serializer * Allow configuration to be serialized * Allow configuration to be serialized * Allow configuration to be serialized * Allow configuration to be serialized * debug info * debug info * debug info * debug info * debug info * debug info * Allow writebuilder to be serialized * Try skipping certs * Make sure it gets set for now * put behind flag * Doc + debug further * Merge in master * Debug info * Pass through param * Remove debug * Remove debug * override trust manager * checkstyle * Try disabling aggregation * easier debugging * Try upgrading localstack * change how containers are started * change how containers are started * force http1 * Add back all tests * Update changes wording * Better change description
- Loading branch information
Showing
10 changed files
with
451 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"comment": "Modify this file in a trivial way to cause this test suite to run.", | ||
"modification": 7 | ||
"modification": 8 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
sdks/java/io/amazon-web-services2/expansion-service/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* License); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an AS IS BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
apply plugin: 'org.apache.beam.module' | ||
apply plugin: 'application' | ||
mainClassName = "org.apache.beam.sdk.expansion.service.ExpansionService" | ||
|
||
applyJavaNature( | ||
automaticModuleName: 'org.apache.beam.sdk.io.amazon-web-services2.expansion.service', | ||
exportJavadoc: false, | ||
validateShadowJar: false, | ||
shadowClosure: {}, | ||
) | ||
|
||
description = "Apache Beam :: SDKs :: Java :: IO :: Amazon Web Services 2 :: Expansion Service" | ||
ext.summary = "Expansion service serving AWS2" | ||
|
||
dependencies { | ||
implementation project(":sdks:java:expansion-service") | ||
permitUnusedDeclared project(":sdks:java:expansion-service") | ||
implementation project(":sdks:java:io:amazon-web-services2") | ||
permitUnusedDeclared project(":sdks:java:io:amazon-web-services2") | ||
runtimeOnly library.java.slf4j_jdk14 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.