Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit 19bb7c9

Browse files
committed
OTPL-7882 Updated to SBT3
1 parent 8a77a4b commit 19bb7c9

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

component/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
<artifactId>spring-beans</artifactId>
3636
</dependency>
3737
<dependency>
38-
<groupId>javax.inject</groupId>
39-
<artifactId>javax.inject</artifactId>
38+
<groupId>jakarta.inject</groupId>
39+
<artifactId>jakarta.inject-api</artifactId>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.springframework</groupId>

component/src/main/resources/archetype-resources/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
</dependency>
4949

5050
<dependency>
51-
<groupId>javax.inject</groupId>
52-
<artifactId>javax.inject</artifactId>
51+
<groupId>jakarta.inject</groupId>
52+
<artifactId>jakarta.inject-api</artifactId>
5353
</dependency>
5454

5555
<dependency>

component/src/main/resources/archetype-resources/src/test/java/ComponentConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
import static org.assertj.core.api.Assertions.assertThat;
1515
16-
import javax.inject.Inject;
16+
import jakarta.inject.Inject;
1717
1818
import org.junit.Test;
1919
import org.junit.runner.RunWith;

component/src/test/resources/projects/test-component/archetype.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ groupId=com.opentable.it
1616
artifactId=component-it
1717
version=0.1.2-SNAPSHOT
1818
package=com.opentable.it
19-
otj-parent-version=378
19+
otj-parent-version=0.1-SBT3-SNAPSHOT

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<groupId>com.opentable</groupId>
2020
<artifactId>otj-parent-spring</artifactId>
21-
<version>378</version>
21+
<version>0.1-SBT3-SNAPSHOT</version>
2222
</parent>
2323

2424
<scm>

service-mvc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<dependencies>
2929
<dependency>
30-
<groupId>javax.inject</groupId>
31-
<artifactId>javax.inject</artifactId>
30+
<groupId>jakarta.inject</groupId>
31+
<artifactId>jakarta.inject-api</artifactId>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.springframework</groupId>

service-mvc/src/main/resources/archetype-resources/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
</dependency>
6969

7070
<dependency>
71-
<groupId>javax.inject</groupId>
72-
<artifactId>javax.inject</artifactId>
71+
<groupId>jakarta.inject</groupId>
72+
<artifactId>jakarta.inject-api</artifactId>
7373
</dependency>
7474

7575
<dependency>

service-mvc/src/main/resources/archetype-resources/src/test/java/MainTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
import static org.assertj.core.api.Assertions.assertThat;
1515
16-
import javax.inject.Inject;
16+
import jakarta.inject.Inject;
1717
1818
import org.junit.Test;
1919
import org.junit.runner.RunWith;

service-mvc/src/test/resources/projects/test-service/archetype.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ groupId=com.opentable.its
1616
artifactId=service-it
1717
version=0.1.2-SNAPSHOT
1818
package=com.opentable.its.mvc
19-
otj-parent-version=378
19+
otj-parent-version=0.1-SBT3-SNAPSHOT

service-reactive/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<dependencies>
2929
<dependency>
30-
<groupId>javax.inject</groupId>
31-
<artifactId>javax.inject</artifactId>
30+
<groupId>jakarta.inject</groupId>
31+
<artifactId>jakarta.inject-api</artifactId>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.springframework</groupId>

0 commit comments

Comments
 (0)