Skip to content

Commit 7ac304c

Browse files
authored
Merge pull request #46 from domaframework/doma-2.30
Support for Doma 2.30
2 parents 9833353 + f881913 commit 7ac304c

File tree

6 files changed

+20
-7
lines changed
  • doma-spring-boot-autoconfigure
  • doma-spring-boot-core
  • doma-spring-boot-samples
    • doma-spring-boot-sample-entity-listener
    • doma-spring-boot-sample-event-handler
    • doma-spring-boot-sample-simple

6 files changed

+20
-7
lines changed

doma-spring-boot-autoconfigure/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@
2828
<artifactId>doma-spring-boot-core</artifactId>
2929
<version>${project.version}</version>
3030
</dependency>
31-
<dependency>
32-
<groupId>org.seasar.doma</groupId>
33-
<artifactId>doma</artifactId>
34-
<version>${doma.version}</version>
35-
</dependency>
3631
<dependency>
3732
<groupId>org.springframework</groupId>
3833
<artifactId>spring-jdbc</artifactId>

doma-spring-boot-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependencies>
2626
<dependency>
2727
<groupId>org.seasar.doma</groupId>
28-
<artifactId>doma</artifactId>
28+
<artifactId>doma-core</artifactId>
2929
<version>${doma.version}</version>
3030
</dependency>
3131
<dependency>

doma-spring-boot-samples/doma-spring-boot-sample-entity-listener/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
</properties>
2424

2525
<dependencies>
26+
<dependency>
27+
<groupId>org.seasar.doma</groupId>
28+
<artifactId>doma-processor</artifactId>
29+
<version>${doma.version}</version>
30+
<scope>provided</scope>
31+
</dependency>
2632
<dependency>
2733
<groupId>org.seasar.doma.boot</groupId>
2834
<artifactId>doma-spring-boot-starter</artifactId>

doma-spring-boot-samples/doma-spring-boot-sample-event-handler/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
</properties>
2424

2525
<dependencies>
26+
<dependency>
27+
<groupId>org.seasar.doma</groupId>
28+
<artifactId>doma-processor</artifactId>
29+
<version>${doma.version}</version>
30+
<scope>provided</scope>
31+
</dependency>
2632
<dependency>
2733
<groupId>org.seasar.doma.boot</groupId>
2834
<artifactId>doma-spring-boot-starter</artifactId>

doma-spring-boot-samples/doma-spring-boot-sample-simple/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
</properties>
2424

2525
<dependencies>
26+
<dependency>
27+
<groupId>org.seasar.doma</groupId>
28+
<artifactId>doma-processor</artifactId>
29+
<version>${doma.version}</version>
30+
<scope>provided</scope>
31+
</dependency>
2632
<dependency>
2733
<groupId>org.seasar.doma.boot</groupId>
2834
<artifactId>doma-spring-boot-starter</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4747
<maven.compiler.source>1.8</maven.compiler.source>
4848
<maven.compiler.target>1.8</maven.compiler.target>
49-
<doma.version>2.28.0</doma.version>
49+
<doma.version>2.30.0</doma.version>
5050
<spring-boot.version>1.5.22.RELEASE</spring-boot.version>
5151
<rootDir>${project.basedir}</rootDir>
5252
</properties>

0 commit comments

Comments
 (0)