Hello team, Is there an equivalent plugin in Grad...
# community-support
a
Hello team, Is there an equivalent plugin in Gradle that generate code from xsd? Similar to Maven’s plugin:
Copy code
<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>xxxxx/something.xsd</source>
                            </sources>
                            <packageName>com.my.example.service</packageName>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
v
There are some. No idea how good they are. We use an own internal one as back then when we started no plugin existed. Have a look at plugins.gradle.org.
a
Thanks @Vampire
👌 1