Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ALFREDAPI-554] make service beans available in main application context #218

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Alfred API - Changelog

## 5.0.3 (2024-06-14)

### Fixed

* [ALFREDAPI-554](https://xenitsupport.jira.com/browse/ALFREDAPI-554): expose `apix-impl`
beans in main application context (to be used by other AMPs)

## 5.0.2 (2024-05-14)

### Fixed
Expand Down
WimCrols marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan(basePackageClasses = {
Version.class,
})
@ComponentScan(basePackages = {"eu.xenit.apix.alfresco"})
WimCrols marked this conversation as resolved.
Show resolved Hide resolved
public class SpringConfiguration {

}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def static getVersionQualifier(String branch_name) {
}

ext {
versionWithoutQualifier = '5.0.2'
versionWithoutQualifier = '5.0.3'

de_version = '3.1.0' // Only used for integration testing
mvc = '8.0.0'
Expand Down
2 changes: 2 additions & 0 deletions src/config/module-context.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@
</list>
</property>
</bean>

<bean class="eu.xenit.apix.SpringConfiguration"/>
pvriel marked this conversation as resolved.
Show resolved Hide resolved
</beans>
Loading