Torsten Juergeleit
Torsten Juergeleit
[Starting with version 3 Spring](http://spring.io/blog/2011/06/10/spring-3-1-m2-configuration-enhancements) provides an alternative to XML for configuring the bean container - [Java Config](http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-java). With Java Config the XML files are replaced by `@Configuration` annotated classes...
The current version of the Spring template is based on Spring version 2. With Sculptor version 3 we updated to Spring version 3. So it's time to adopt some [new...
We have to publish the generated Maven site for the Maven plugin to give the user access to the plugin documentation. This Maven site can be deployed to the new...
If DomainObject attribute names which are reserved for persistence or auditing (e.g. id, key, version, uuid, createdDate, ...) are used in the DSL then Sculptor generates invalid code: ``` ValueObject...
To automate the staging of a release of the Sculptor Maven plugin to Sonatypes OSSRH service the [nexus-staging-maven-plugin](https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin) should be used.
The current [JavaCC](https://javacc.org/)-generated Velocity parser doesn't support [error recovery support](https://javacc.org/tutorials/errorrecovery) - the parser stops after it founds the first error. For the Velocity editor it would be helpful to find...
With activated global validity rule uploading an OpenAPI artifact with a missing response triggers two validation rule violations with similar text: Example upload: ```yaml openapi: 3.0.3 info: title: Test version:...
With activated global validity rule (Full) uploading an OpenAPI artifact using a single `example` (instead of multiple `examples`) an NPE is thrown and following error is shown: Example artifact: ```yaml...