Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Alfred API - Changelog

## 6.1.1 (2025-11-23)
## 6.1.1 (2025-11-04)

### Added
* [ALFREDAPI-581](https://xenitsupport.jira.com/browse/ALFREDAPI-581): Support ElasticSearch (Alfresco Enterprise Search)
Expand Down
25 changes: 24 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
id 'eu.xenit.alfresco' version '1.1.0' apply false
id 'eu.xenit.docker-alfresco' version '5.5.0' apply false
id 'eu.xenit.docker-compose' version '5.5.0' apply false
id 'eu.xenit.enterprise-conventions.oss' version '0.6.2'
}

def static getVersionQualifier(String branch_name) {
Expand All @@ -22,6 +21,30 @@ ext {
http_version = '4.5.13' // Used by integration tests
}

// See https://jreleaser.org/guide/latest/reference/deploy/maven/maven-central.html for syntax
jreleaser {
deploy {
maven {
mavenCentral {
release {
// Add an override for each artifact we want to publish, because we want to
// disable requirements checking for each of them.
['interface', '231', '232', '233', '234', '251'].each { suffix ->
artifactOverride {
// Match artifact by artifactId
artifactId = "alfred-api-${suffix}"
verifyPom = false
jar = false
sourceJar = false
javadocJar = false
}
}
}
}
}
}
}

allprojects {
apply plugin: 'java'

Expand Down
1 change: 0 additions & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'eu.xenit.enterprise-conventions.oss'

publishing {
publications {
Expand Down
5 changes: 4 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id 'eu.xenit.enterprise-conventions.oss' version '0.6.2'
}

rootProject.name = 'alfred-api'

include ':alfred-api-interface'
Expand All @@ -9,7 +13,6 @@ include ':alfred-api-integrationtests-client:model-amp'
include ':alfred-api-integrationtests-server'
include ':docs'


for (String version : ['23.1', '23.2', '23.3', '23.4', '25.1']) {
def shortVersion = version.replaceAll('\\.', '')

Expand Down