Skip to content
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
6 changes: 3 additions & 3 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -494,17 +494,17 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda-deployment</artifactId>
<artifactId>quarkus-amazon-lambda-deployment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-kotlin-deployment</artifactId>
<artifactId>quarkus-amazon-lambda-runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda-runtime</artifactId>
<artifactId>quarkus-kotlin-deployment</artifactId>
Copy link
Member Author

@evanchooly evanchooly Mar 6, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was partially a reorder to group the amazon-lambda deps together.

<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion devtools/common/src/main/filtered/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"aws"
],
"groupId": "io.quarkus",
"artifactId": "quarkus-lambda-deployment"
"artifactId": "quarkus-amazon-lambda-deployment"
},
{
"name": "Narayana JTA",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<parent>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda</artifactId>
<artifactId>quarkus-amazon-lambda</artifactId>
<version>1.0.0.Alpha1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>quarkus-lambda-deployment</artifactId>
<name>Quarkus - Lambda - Deployment</name>
<artifactId>quarkus-amazon-lambda-deployment</artifactId>
<name>Quarkus - Amazon Lambda - Deployment</name>

<dependencies>
<dependency>
Expand All @@ -25,7 +25,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda-runtime</artifactId>
<artifactId>quarkus-amazon-lambda-runtime</artifactId>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<relativePath>../../build-parent/pom.xml</relativePath>
</parent>

<artifactId>quarkus-lambda</artifactId>
<name>Quarkus - Lambda</name>
<artifactId>quarkus-amazon-lambda</artifactId>
<name>Quarkus - Amazon Lambda</name>
<packaging>pom</packaging>

<modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<parent>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda</artifactId>
<artifactId>quarkus-amazon-lambda</artifactId>
<version>1.0.0.Alpha1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>quarkus-lambda-runtime</artifactId>
<name>Quarkus - Lambda - Runtime</name>
<artifactId>quarkus-amazon-lambda-runtime</artifactId>
<name>Quarkus - Amazon Lambda - Runtime</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<!-- Caching -->
<module>caffeine</module>

<module>lambda</module>
<module>amazon-lambda</module>
<!-- Camel -->
<module>camel</module>

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-lambda-deployment</artifactId>
<artifactId>quarkus-amazon-lambda-deployment</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down