Skip to content

Commit 6a5f135

Browse files
committed
Release 1.38.2
1 parent 0145f35 commit 6a5f135

File tree

6 files changed

+39
-43
lines changed

6 files changed

+39
-43
lines changed

doma-it/.classpath

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" output="target/classes" path="src/main/java">
4-
<attributes>
5-
<attribute name="optional" value="true"/>
6-
<attribute name="maven.pomderived" value="true"/>
7-
</attributes>
8-
</classpathentry>
9-
<classpathentry kind="src" path="src/main/resources"/>
10-
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
11-
<attributes>
12-
<attribute name="optional" value="true"/>
13-
<attribute name="maven.pomderived" value="true"/>
14-
</attributes>
15-
</classpathentry>
16-
<classpathentry kind="src" path="src/test/resources"/>
17-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
18-
<attributes>
19-
<attribute name="maven.pomderived" value="true"/>
20-
</attributes>
21-
</classpathentry>
22-
<classpathentry kind="src" path=".apt_generated">
23-
<attributes>
24-
<attribute name="optional" value="true"/>
25-
</attributes>
26-
</classpathentry>
27-
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
28-
<attributes>
29-
<attribute name="maven.pomderived" value="true"/>
30-
</attributes>
31-
</classpathentry>
32-
<classpathentry kind="output" path="target/classes"/>
33-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" path="src/main/resources"/>
10+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
11+
<attributes>
12+
<attribute name="optional" value="true"/>
13+
<attribute name="maven.pomderived" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry including="**/*.java" kind="src" path="src/test/resources"/>
17+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
18+
<attributes>
19+
<attribute name="maven.pomderived" value="true"/>
20+
</attributes>
21+
</classpathentry>
22+
<classpathentry kind="src" path=".apt_generated">
23+
<attributes>
24+
<attribute name="optional" value="true"/>
25+
</attributes>
26+
</classpathentry>
27+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
28+
<attributes>
29+
<attribute name="maven.pomderived" value="true"/>
30+
</attributes>
31+
</classpathentry>
32+
<classpathentry kind="output" path="target/classes"/>
33+
</classpath>

doma-it/.factorypath

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<factorypath>
2-
<factorypathentry kind="WKSPJAR" id="/doma/target/doma-1.38.0.jar" enabled="true" runInBatchMode="false"/>
2+
<factorypathentry kind="EXTJAR" id="/Users/nakamura/src/github.com/seasarorg/doma/doma/target/doma-1.38.2.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="WKSPJAR" id="/doma/target/doma-1.38.2.jar" enabled="true" runInBatchMode="false"/>
34
</factorypath>

doma-it/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- The Basics -->
77
<groupId>org.seasar.doma</groupId>
88
<artifactId>doma-it</artifactId>
9-
<version>1.38.0</version>
9+
<version>1.38.2</version>
1010
<packaging>jar</packaging>
1111

1212
<!-- More Project Information -->
@@ -303,7 +303,7 @@
303303
<dependency>
304304
<groupId>org.seasar.doma</groupId>
305305
<artifactId>doma</artifactId>
306-
<version>1.38.0</version>
306+
<version>1.38.2</version>
307307
<type>jar</type>
308308
</dependency>
309309
<dependency>

doma/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- The Basics -->
77
<groupId>org.seasar.doma</groupId>
88
<artifactId>doma</artifactId>
9-
<version>1.38.2-SNAPSHOT</version>
9+
<version>1.38.2</version>
1010
<packaging>jar</packaging>
1111

1212
<!-- More Project Information -->

doma/src/main/java/org/seasar/doma/internal/Artifact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public final class Artifact {
2626

2727
private static final String NAME = "Doma";
2828

29-
private static final String VERSION = "1.38.0";
29+
private static final String VERSION = "1.38.2";
3030

3131
public static String getName() {
3232
return NAME;

doma/src/test/java/example/entity/_IdOnly.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
package example.entity;
22

33
/** */
4-
@javax.annotation.Generated(value = { "Doma", "1.38.0" }, date = "2015-07-21T13:32:18.619+0900")
54
public final class _IdOnly extends org.seasar.doma.jdbc.entity.AbstractEntityType<IdOnly> {
65

7-
static {
8-
org.seasar.doma.internal.Artifact.validateVersion("1.38.0");
9-
}
10-
116
private static final _IdOnly __singleton = new _IdOnly();
127

138
private final org.seasar.doma.jdbc.id.BuiltinIdentityIdGenerator __idGenerator = new org.seasar.doma.jdbc.id.BuiltinIdentityIdGenerator();

0 commit comments

Comments
 (0)