Skip to content

Commit

Permalink
Merge pull request #47 from domaframework/release-1.3.0
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
backpaper0 authored Apr 18, 2020
2 parents 7ac304c + d83167e commit 67ca524
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 11 deletions.
33 changes: 30 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ doma.exception-sql-log-type= # Type of SQL log in the exception. (RAW, FORMATTED
<dependency>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-starter</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
</dependency>
```

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

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

``` xml
<dependency>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-starter</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.seasar.doma</groupId>
<artifactId>doma-processor</artifactId>
<version>2.30.0</version>
<scope>provided</scope>
</dependency>
```

If you use Doma 2.29.0 or lower, the dependencies are as follows.

```xml
<dependency>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-starter</artifactId>
<version>1.3.0</version>
<exclusions>
<exclusion>
<groupId>org.seasar.doma</groupId>
<artifactId>doma-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.seasar.doma</groupId>
<artifactId>doma</artifactId>
<version>2.29.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion doma-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion doma-spring-boot-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-samples</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-samples</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-samples</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion doma-spring-boot-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>doma-spring-boot</artifactId>
<groupId>org.seasar.doma.boot</groupId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion doma-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.0</version>
<packaging>pom</packaging>

<name>doma-spring-boot</name>
Expand Down

0 comments on commit 67ca524

Please sign in to comment.