Skip to content

Commit

Permalink
Merge pull request #1244 from evanchooly/module-name
Browse files Browse the repository at this point in the history
rename modules
  • Loading branch information
cescoffier authored Mar 6, 2019
2 parents 6e73d8a + 15a33f8 commit f2e61ce
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -506,17 +506,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>
<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

0 comments on commit f2e61ce

Please sign in to comment.