Skip to content

Commit 67ca524

Browse files
authored
Merge pull request #47 from domaframework/release-1.3.0
Release 1.3.0
2 parents 7ac304c + d83167e commit 67ca524

File tree

9 files changed

+38
-11
lines changed

9 files changed

+38
-11
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

doma-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

doma-spring-boot-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot-samples</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot-samples</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot-samples</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

doma-spring-boot-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>doma-spring-boot</artifactId>
77
<groupId>org.seasar.doma.boot</groupId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
</parent>
1010
<packaging>pom</packaging>
1111
<modelVersion>4.0.0</modelVersion>

doma-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.seasar.doma.boot</groupId>
1414
<artifactId>doma-spring-boot</artifactId>
15-
<version>1.3.0-SNAPSHOT</version>
15+
<version>1.3.0</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.seasar.doma.boot</groupId>
77
<artifactId>doma-spring-boot</artifactId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
<packaging>pom</packaging>
1010

1111
<name>doma-spring-boot</name>

0 commit comments

Comments
 (0)