Skip to content

Commit

Permalink
Merge pull request #1462 from quarkiverse/backports
Browse files Browse the repository at this point in the history
Backports
  • Loading branch information
scrocquesel authored Oct 26, 2024
2 parents f1df04a + 23a37d4 commit c230c4c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This file should cause that -source.jar and -javadoc.jar are created.
See https://github.com/jreleaser/jreleaser/issues/1751
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This file should cause that -source.jar and -javadoc.jar are created.
See https://github.com/jreleaser/jreleaser/issues/1751
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This file should cause that -source.jar and -javadoc.jar are created.
See https://github.com/jreleaser/jreleaser/issues/1751
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package io.quarkiverse.amazon.sqs.deployment;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;

/**
* Processor
*/
public class MessagingAmazonSqsProcessor {

private static final String FEATURE = "messaging-amazon-sqs";

@BuildStep
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}
}

0 comments on commit c230c4c

Please sign in to comment.