I’m using a couple of recipes:
- org.openrewrite.java.spring.ChangeSpringPropertyValue
- org.openrewrite.java.spring.ChangeSpringPropertyKey
- org.openrewrite.java.spring.AddSpringProperty
And it works, but the output isn’t in YAML format:
oracleucp.connection-factory-class-name: oracle.jdbc.pool.OracleDataSource
oracleucp.connection-pool-name: ConnectionPoolName
oracleucp.max-pool-size: 10
What I would expect is something like this:
oracleucp:
connection-factory-class-name: oracle.jdbc.pool.OracleDataSource
connection-pool-name: ConnectionPoolName
max-pool-size: 10
Is this a configuration issue? Is there recipe thaty can do the formatting?
Thanks
Andy