Skip to content

Commit 2cebd05

Browse files
Mikhail42ihostage
authored andcommitted
Move to org.playframework group id
1 parent 2ada933 commit 2cebd05

11 files changed

Lines changed: 20 additions & 17 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![OpenCollective](https://img.shields.io/opencollective/all/playframework?label=financial%20contributors&logo=open-collective)](https://opencollective.com/playframework)
1010

1111
[![Build Status](https://github.com/playframework/play-soap/actions/workflows/build-test.yml/badge.svg)](https://github.com/playframework/play-soap/actions/workflows/build-test.yml)
12-
[![Maven](https://img.shields.io/maven-central/v/com.typesafe.play/play-soap-client_2.13.svg?logo=apache-maven)](https://mvnrepository.com/artifact/com.typesafe.play/play-soap-client_2.13)
12+
[![Maven](https://img.shields.io/maven-central/v/org.playframework/play-soap-client_2.13.svg?logo=apache-maven)](https://mvnrepository.com/artifact/org.playframework/play-soap-client_2.13)
1313
[![Repository size](https://img.shields.io/github/repo-size/playframework/play-soap.svg?logo=git)](https://github.com/playframework/play-soap)
1414
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
1515
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/playframework/play-soap&style=flat)](https://mergify.com)

docs/modules/ROOT/pages/plugin/gradle.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
dependencies {
1414
wsdl2java(
15-
[group: 'com.typesafe.play', name: 'play-soap-plugin', version: '2.0.0']
15+
[group: 'org.playframework', name: 'play-soap-plugin', version: '2.0.0']
1616
)
1717
}
1818

@@ -21,4 +21,4 @@ wsdl2java {
2121
['-fe', 'play', '-xjc-Xplay:lang java', '-xjc-Xplay:target play', "${projectDir}/src/main/resources/helloWorld.wsdl"]
2222
]
2323
}
24-
----
24+
----

docs/modules/ROOT/pages/plugin/maven.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add the following dependencies and plugin configuration to your `pom.xml` file.
88
----
99
<dependencies>
1010
<dependency>
11-
<groupId>com.typesafe.play</groupId>
11+
<groupId>org.playframework</groupId>
1212
<artifactId>play-soap-plugin</artifactId>
1313
<version>${play.soap.plugin.version}</version>
1414
</dependency>

docs/modules/ROOT/pages/plugin/sbt.adoc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Add dependency and plugin into your project in `project/plugins.sbt`:
66

77
[,scala]
88
----
9-
libraryDependencies ++= Seq("com.typesafe.play" % "play-soap-plugin" % "2.0.0")
9+
libraryDependencies ++= Seq("org.playframework" % "play-soap-plugin" % "2.0.0")
1010

11-
addSbtPlugin("io.paymenthighway.sbt" % "sbt-cxf" % "1.6")
11+
addSbtPlugin("io.paymenthighway.sbt" % "sbt-cxf" % "1.7")
1212
----
1313

1414
Add the plugin configuration to the `build.sbt` file. Additional arguments needed to generate java classes for our web-service WSDLs should be added as parameters to the `cxfWSDLs` setting:
@@ -17,12 +17,15 @@ Add the plugin configuration to the `build.sbt` file. Additional arguments neede
1717
----
1818
enablePlugins(CxfPlugin)
1919

20-
val CxfVersion = "3.3.3"
20+
val CxfVersion = "4.0.8"
2121

22-
version in CXF := CxfVersion
22+
CXF / version := CxfVersion
2323

2424
cxfWSDLs := Seq(
25-
Wsdl("HelloWorld",(Compile / resourceDirectory).value / "helloWorld.wsdl",
26-
Seq("-fe", "play", "-xjc-Xplay:lang scala", "-xjc-Xplay:target play"))
25+
Wsdl(
26+
"HelloWorld",
27+
(Compile / resourceDirectory).value / "helloWorld.wsdl",
28+
Seq("-fe", "play", "-xjc-Xplay:lang scala", "-xjc-Xplay:target play")
29+
)
2730
)
2831
----

plugin/src/sbt-test/play-soap/incremental-compilation/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
scalaVersion := sys.props("scala.version")
55
crossScalaVersions := sys.props("scala.crossVersions").split(",").toSeq
66

7-
libraryDependencies += "com.typesafe.play" %% "play" % play.core.PlayVersion.current
7+
libraryDependencies += "org.playframework" %% "play" % play.core.PlayVersion.current
88

99
InputKey[Unit]("contains") := {
1010
val args = Def.spaceDelimited("<file> <text>").parsed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
33
*/
4-
addSbtPlugin("com.typesafe.play" % "sbt-play-soap" % sys.props("project.version"))
4+
addSbtPlugin("org.playframework" % "sbt-play-soap" % sys.props("project.version"))

plugin/src/sbt-test/play-soap/multiple-ports/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
scalaVersion := sys.props("scala.version")
55
crossScalaVersions := sys.props("scala.crossVersions").split(",").toSeq
66

7-
libraryDependencies += "com.typesafe.play" %% "play" % play.core.PlayVersion.current
7+
libraryDependencies += "org.playframework" %% "play" % play.core.PlayVersion.current
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
33
*/
4-
addSbtPlugin("com.typesafe.play" % "sbt-play-soap" % sys.props("project.version"))
4+
addSbtPlugin("org.playframework" % "sbt-play-soap" % sys.props("project.version"))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
33
*/
4-
addSbtPlugin("com.typesafe.play" % "sbt-play-soap" % sys.props("project.version"))
4+
addSbtPlugin("org.playframework" % "sbt-play-soap" % sys.props("project.version"))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*
22
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
33
*/
4-
addSbtPlugin("com.typesafe.play" % "sbt-play-soap" % sys.props("project.version"))
4+
addSbtPlugin("org.playframework" % "sbt-play-soap" % sys.props("project.version"))

0 commit comments

Comments
 (0)