Releases: cloudfoundry/multiapps
Releases · cloudfoundry/multiapps
2.3.2
2.3.1
2.3.0
2.2.0
TestDataSourceProvider
has been removed as it is not used and does not belong in this project.TestUtil
,Tester
andGenericArgumentMatcher
have been extracted in a new Maven module -multiapps-common-test
. This means that we can stop the bad practice of using atest-jar
dependency tomultiapps-common
both here and in multiapps-controller.
2.1.2
2.1.1
2.1.0
- Fix compilation with Java 11.
- Fix Javadoc generation with Java 11.
- Updated Maven dependencies (see 58bb698).
- MTA handler creation has been refactored for easier maintenance:
new HandlerFactory(3).getDescriptorParser()
->HandlerFactory.forSchemaVersion(3).getDescriptorParser()
validateModifiableElements
has been removed fromValidatorUtil
, as it was never supposed to be a part of the public API.ValidatorUtil
has been renamed toNameUtil
, as the remaining methods are not validator-specific and work with MTA entity names.
2.0.1
2.0.0
- Change Maven group and artifact IDs.
- Change Java packages for consistency with group ID:
com.sap.cloud.lm.sl
->org.cloudfoundry.multiapps
Previous artifacts:
<dependency>
<groupId>com.sap.cloud.lm.sl</groupId>
<artifactId>com.sap.cloud.lm.sl.common</artifactId>
<version>...</version>
</dependency>
<dependency>
<groupId>com.sap.cloud.lm.sl</groupId>
<artifactId>com.sap.cloud.lm.sl.mta</artifactId>
<version>...</version>
</dependency>
New artifacts:
<dependency>
<groupId>org.cloudfoundry.multiapps</groupId>
<artifactId>multiapps-common</artifactId>
<version>...</version>
</dependency>
<dependency>
<groupId>org.cloudfoundry.multiapps</groupId>
<artifactId>multiapps-mta</artifactId>
<version>...</version>
</dependency>