Skip to content

Commit 1293c75

Browse files
authored
Merge pull request #63 from domaframework/chore/revert-commits
Revert some wrong commits
2 parents 5cfff23 + 7e3ea40 commit 1293c75

File tree

10 files changed

+33
-32
lines changed

10 files changed

+33
-32
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,3 @@ target
99
.settings
1010
.factorypath
1111
.apt_generated
12-
pom.xml.next
13-
pom.xml.tag
14-
pom.xml.releaseBackup
15-
release.properties

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ doma.jdbc-logger= # Type of JdbcLogger. (SLF4J, JUL)
3030
<dependency>
3131
<groupId>org.seasar.doma.boot</groupId>
3232
<artifactId>doma-spring-boot-starter</artifactId>
33-
<version>1.5.0</version>
33+
<version>1.4.0</version>
3434
</dependency>
3535
```
3636

@@ -65,7 +65,7 @@ Add the following dependencies to `pom.xml` so that we can use Doma with Spring
6565
<dependency>
6666
<groupId>org.seasar.doma.boot</groupId>
6767
<artifactId>doma-spring-boot-starter</artifactId>
68-
<version>1.5.0</version>
68+
<version>1.4.0</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.seasar.doma</groupId>
@@ -81,7 +81,7 @@ If you use Doma 2.29.0 or lower, the dependencies are as follows.
8181
<dependency>
8282
<groupId>org.seasar.doma.boot</groupId>
8383
<artifactId>doma-spring-boot-starter</artifactId>
84-
<version>1.5.0</version>
84+
<version>1.4.0</version>
8585
<exclusions>
8686
<exclusion>
8787
<groupId>org.seasar.doma</groupId>

doma-spring-boot-autoconfigure/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-autoconfigure</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

doma-spring-boot-core/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-core</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-sample-entity-listener</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot-samples</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-sample-event-handler</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot-samples</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-sample-simple</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot-samples</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

doma-spring-boot-samples/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<parent>
46
<artifactId>doma-spring-boot</artifactId>
57
<groupId>org.seasar.doma.boot</groupId>
6-
<version>1.6.0-SNAPSHOT</version>
8+
<version>1.5.0-SNAPSHOT</version>
79
</parent>
810
<packaging>pom</packaging>
911
<modelVersion>4.0.0</modelVersion>

doma-spring-boot-starter/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<artifactId>doma-spring-boot-starter</artifactId>
@@ -11,7 +12,7 @@
1112
<parent>
1213
<groupId>org.seasar.doma.boot</groupId>
1314
<artifactId>doma-spring-boot</artifactId>
14-
<version>1.6.0-SNAPSHOT</version>
15+
<version>1.5.0-SNAPSHOT</version>
1516
<relativePath>../pom.xml</relativePath>
1617
</parent>
1718

pom.xml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>org.seasar.doma.boot</groupId>
67
<artifactId>doma-spring-boot</artifactId>
7-
<version>1.6.0-SNAPSHOT</version>
8+
<version>1.5.0-SNAPSHOT</version>
89
<packaging>pom</packaging>
910

1011
<name>doma-spring-boot</name>
@@ -39,8 +40,7 @@
3940
<connection>scm:git:[email protected]:domaframework/doma-spring-boot.git</connection>
4041
<developerConnection>scm:git:[email protected]:domaframework/doma-spring-boot.git</developerConnection>
4142
<url>[email protected]:domaframework/doma-spring-boot.git</url>
42-
<tag>HEAD</tag>
43-
</scm>
43+
</scm>
4444

4545
<properties>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -52,7 +52,7 @@
5252
<javadoc-plugin.version>3.2.0</javadoc-plugin.version>
5353
<nexus-staging-plugin.version>1.6.8</nexus-staging-plugin.version>
5454
<formatter-maven-plugin.version>2.13.0</formatter-maven-plugin.version>
55-
<release-plugin.version>3.0.0-M1</release-plugin.version>
55+
<versions-maven-plugin.version>2.2</versions-maven-plugin.version>
5656
<gpg-plugin.version>1.6</gpg-plugin.version>
5757
<rootDir>${project.basedir}</rootDir>
5858
</properties>
@@ -150,12 +150,9 @@
150150
</configuration>
151151
</plugin>
152152
<plugin>
153-
<groupId>org.apache.maven.plugins</groupId>
154-
<artifactId>maven-release-plugin</artifactId>
155-
<version>${release-plugin.version}</version>
156-
<configuration>
157-
<autoVersionSubmodules>true</autoVersionSubmodules>
158-
</configuration>
153+
<groupId>org.codehaus.mojo</groupId>
154+
<artifactId>versions-maven-plugin</artifactId>
155+
<version>${versions-maven-plugin.version}</version>
159156
</plugin>
160157
<plugin>
161158
<groupId>net.revelc.code.formatter</groupId>

0 commit comments

Comments
 (0)