Skip to content

Commit

Permalink
konveyor#390 Make Java code compilable
Browse files Browse the repository at this point in the history
Signed-off-by: Gerd Aschemann <gerd@aschemann.net>
  • Loading branch information
ascheman committed Nov 10, 2023
1 parent e5223f0 commit 615ba75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
<artifactId>kubernetes-client-api</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
import javax.ejb.Singleton;

@Singleton
public class Bean implements SessionBean {
public abstract class Bean implements SessionBean {
}

0 comments on commit 615ba75

Please sign in to comment.