Skip to content

Commit

Permalink
Make sure TCKs are CDI-version agnostic
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn committed Apr 13, 2022
1 parent b604d54 commit 85ab132
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
Expand Up @@ -21,8 +21,10 @@
import org.eclipse.microprofile.reactive.messaging.Channel;
import org.eclipse.microprofile.reactive.messaging.Emitter;

import jakarta.enterprise.context.Dependent;
import jakarta.inject.Inject;

@Dependent
public class BeanWithMissingChannel {
@Inject
@Channel("missing")
Expand Down
Expand Up @@ -20,6 +20,9 @@

import org.eclipse.microprofile.reactive.messaging.Outgoing;

import jakarta.enterprise.context.Dependent;

@Dependent
public class BeanWithBadOutgoingSignature {

@Outgoing("foo")
Expand Down
Expand Up @@ -20,6 +20,9 @@

import org.eclipse.microprofile.reactive.messaging.Incoming;

import jakarta.enterprise.context.Dependent;

@Dependent
public class BeanWithEmptyIncoming {

@Incoming("")
Expand Down
Expand Up @@ -20,6 +20,9 @@

import org.eclipse.microprofile.reactive.messaging.Outgoing;

import jakarta.enterprise.context.Dependent;

@Dependent
public class BeanWithEmptyOutgoing {

@Outgoing("")
Expand Down
Expand Up @@ -21,6 +21,9 @@
import org.eclipse.microprofile.reactive.messaging.Incoming;
import org.eclipse.microprofile.reactive.messaging.Outgoing;

import jakarta.enterprise.context.Dependent;

@Dependent
public class BeanWithIncompleteChain {

@Incoming("missing")
Expand Down

0 comments on commit 85ab132

Please sign in to comment.