Skip to content

Commit

Permalink
Java/Csharp versions updated to CDK 1.83 and code refactoring cdk-pat…
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrodamascena committed Jan 12, 2021
1 parent f6ef769 commit d5e8cd7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Amazon.CDK" Version="1.57.0" />
<PackageReference Include="Amazon.CDK.AWS.APIGatewayv2" Version="1.57.0" />
<PackageReference Include="Amazon.CDK.AWS.DynamoDB" Version="1.57.0" />
<PackageReference Include="Amazon.CDK" Version="1.83.0" />
<PackageReference Include="Amazon.CDK.AWS.APIGatewayv2" Version="1.83.0" />
<PackageReference Include="Amazon.CDK.AWS.APIGatewayv2.Integrations" Version="1.83.0" />
<PackageReference Include="Amazon.CDK.AWS.DynamoDB" Version="1.83.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.Collections.Generic;
using Amazon.CDK;
using Amazon.CDK.AWS.APIGatewayv2;
using Amazon.CDK.AWS.APIGatewayv2.Integrations;
using Amazon.CDK.AWS.DynamoDB;
using Amazon.CDK.AWS.Lambda;

Expand Down
5 changes: 5 additions & 0 deletions the-simple-webservice/java/cdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,10 @@
<artifactId>apigatewayv2</artifactId>
<version>${cdk.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awscdk</groupId>
<artifactId>apigatewayv2-integrations</artifactId>
<version>${cdk.version}</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import software.amazon.awscdk.core.Stack;
import software.amazon.awscdk.core.StackProps;
import software.amazon.awscdk.services.apigatewayv2.HttpApi;
import software.amazon.awscdk.services.apigatewayv2.LambdaProxyIntegration;
import software.amazon.awscdk.services.apigatewayv2.integrations.LambdaProxyIntegration;
import software.amazon.awscdk.services.dynamodb.Attribute;
import software.amazon.awscdk.services.dynamodb.AttributeType;
import software.amazon.awscdk.services.dynamodb.Table;
Expand Down
2 changes: 1 addition & 1 deletion the-simple-webservice/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<maven.compiler.version>3.8.1</maven.compiler.version>
<maven.surefire.version>3.0.0-M5</maven.surefire.version>

<cdk.version>1.69.0</cdk.version>
<cdk.version>1.83.0</cdk.version>

<junit.version>5.7.0</junit.version>
<assertj.version>3.16.1</assertj.version>
Expand Down

0 comments on commit d5e8cd7

Please sign in to comment.