Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Add some test deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed May 10, 2024
1 parent 61f7748 commit 4b98ea0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions its/src/it/simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
*******************************************************************************/
package org.eclipse.sisu.mojos;

import org.junit.Test;
import javax.inject.Named;

@Named
public class ComponentTest {
@Test
public void dummyTest() {}
}

0 comments on commit 4b98ea0

Please sign in to comment.