Skip to content

Commit 79c393b

Browse files
committed
Update README
1 parent 7ac304c commit 79c393b

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

README.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ doma.exception-sql-log-type= # Type of SQL log in the exception. (RAW, FORMATTED
2929
<dependency>
3030
<groupId>org.seasar.doma.boot</groupId>
3131
<artifactId>doma-spring-boot-starter</artifactId>
32-
<version>1.2.1</version>
32+
<version>1.3.0</version>
3333
</dependency>
3434
```
3535

@@ -58,13 +58,40 @@ Enter and select "Web", "JDBC" and "H2" in「Search for dependencies」.
5858
Then click 「Generate Project」 and `demo.zip` will be downloaded. Extract the zip and import the Maven project into IDE.
5959
In this tutorial we will use IntelliJ IDEA. In case of IDEA, only you have to do is just open `pom.xml`.
6060

61-
Add the following dependency to `pom.xml` so that we can use Doma with Spring Boot.
61+
Add the following dependencies to `pom.xml` so that we can use Doma with Spring Boot.
6262

6363
``` xml
6464
<dependency>
6565
<groupId>org.seasar.doma.boot</groupId>
6666
<artifactId>doma-spring-boot-starter</artifactId>
67-
<version>1.2.1</version>
67+
<version>1.3.0</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.seasar.doma</groupId>
71+
<artifactId>doma-processor</artifactId>
72+
<version>2.30.0</version>
73+
<scope>provided</scope>
74+
</dependency>
75+
```
76+
77+
If you use Doma 2.29.0 or lower, the dependencies are as follows.
78+
79+
```xml
80+
<dependency>
81+
<groupId>org.seasar.doma.boot</groupId>
82+
<artifactId>doma-spring-boot-starter</artifactId>
83+
<version>1.3.0</version>
84+
<exclusions>
85+
<exclusion>
86+
<groupId>org.seasar.doma</groupId>
87+
<artifactId>doma-core</artifactId>
88+
</exclusion>
89+
</exclusions>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.seasar.doma</groupId>
93+
<artifactId>doma</artifactId>
94+
<version>2.29.0</version>
6895
</dependency>
6996
```
7097

0 commit comments

Comments
 (0)