Skip to content

Commit bc748bd

Browse files
authored
Change the plugin id (#127)
1 parent a1ca705 commit bc748bd

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It generates Java, Kotlin, and SQL files from Database.
1111
Check latest version
1212
--------------------
1313

14-
- [Gradle Plugin Portal](https://plugins.gradle.org/plugin/org.seasar.doma.codegen).
14+
- [Gradle Plugin Portal](https://plugins.gradle.org/plugin/org.domaframework.doma.codegen).
1515

1616
How to use
1717
----------
@@ -32,7 +32,7 @@ buildscript {
3232
plugins {
3333
id 'java'
3434
// specify the Doma CodeGen Plugin with correct version
35-
id 'org.seasar.doma.codegen' version 'x.x.x'
35+
id 'org.domaframework.doma.codegen' version '2.x.x'
3636
}
3737
3838
domaCodeGen {
@@ -71,7 +71,7 @@ buildscript {
7171
plugins {
7272
id("java")
7373
// specify the Doma CodeGen Plugin with correct version
74-
id("org.seasar.doma.codegen") version "x.x.x"
74+
id("org.domaframework.doma.codegen") version "2.x.x"
7575
}
7676

7777
domaCodeGen {

codegen-test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
maven {url 'https://oss.sonatype.org/content/repositories/snapshots/'}
1212
}
1313
dependencies {
14-
classpath "org.seasar.doma:codegen"
14+
classpath "org.domaframework.doma:codegen"
1515
classpath "com.h2database:h2:$h2Version"
1616
classpath 'mysql:mysql-connector-java:8.0.30'
1717
}
@@ -23,7 +23,7 @@ plugins {
2323
id 'org.seasar.doma.compile' version '1.1.0'
2424
}
2525

26-
apply plugin: 'org.seasar.doma.codegen'
26+
apply plugin: 'org.domaframework.doma.codegen'
2727

2828
java {
2929
sourceCompatibility = JavaVersion.VERSION_1_8

codegen/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
gradlePlugin {
99
plugins {
1010
create("codegenPlugin") {
11-
id = "org.seasar.doma.codegen"
11+
id = "org.domaframework.doma.codegen"
1212
displayName = "Doma Codegen Plugin"
1313
description = "Generates Java, Kotlin, and SQL files from Database"
1414
implementationClass = "org.seasar.doma.gradle.codegen.CodeGenPlugin"

codegen/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
group=org.seasar.doma
1+
group=org.domaframework.doma

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
group=org.seasar.doma
2-
version=1.4.2-SNAPSHOT
1+
group=org.domaframework.doma
2+
version=2.0.0-SNAPSHOT
33
release.useAutomaticVersion=true

0 commit comments

Comments
 (0)