Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
30fa72b
ci: moves the display names to the right location
baywet Jun 19, 2025
ba3a0f1
ci: use script instead of shell shortcut
baywet Jun 19, 2025
399c019
ci: use ps to do the version branch comparison
baywet Jun 19, 2025
4a0e3cb
ci: use condition instead of if
baywet Jun 19, 2025
e487271
ci: fixes secure file download
baywet Jun 19, 2025
6f983d7
ci: fix the snapshot version
baywet Jun 19, 2025
0c410fc
ci: fixes package version retrieval
baywet Jun 19, 2025
35dfd72
ci: another attempt at fixing variable name
baywet Jun 19, 2025
edcffcc
ci: fix zipping script
baywet Jun 19, 2025
d15134e
ci: adds github release publishing
baywet Jun 19, 2025
c0aebbd
ci: adds some logging for the zipping
baywet Jun 19, 2025
06ba183
ci: removes file extension filter because the publish task doesn't un…
baywet Jun 19, 2025
3ba7c39
ci: adds release to maven
baywet Jun 19, 2025
7af0043
ci: adds missing edit setting to github release
baywet Jun 19, 2025
a857d9d
ci: fixes maven stage structure
baywet Jun 19, 2025
3bc14ef
ci: adds missing environment
baywet Jun 19, 2025
3770e25
fix switches to ESRP release because of OSSRH/maven central migration
baywet Jun 19, 2025
a0edb91
ci: fixes owners and approvers list
baywet Jun 19, 2025
6abb286
chore: cleans up snapshot reference
baywet Jun 19, 2025
27b3c34
ci: rezips as single file
baywet Jun 19, 2025
bc3c047
ci: enables condition for github release
baywet Jun 19, 2025
3f76cc8
ci: fixes github release file extensions
baywet Jun 19, 2025
3939f6a
ci: fixes publishing path
baywet Jun 19, 2025
be242f4
ci: avoids mixing other files in archive
baywet Jun 19, 2025
46c4a68
ci: fix full name for zip to expand
baywet Jun 19, 2025
efee6af
ci: fixes the ESRP release task version
baywet Jun 19, 2025
03af737
ci: restoring the condition on github release step
baywet Jun 19, 2025
7d06bfb
ci: fixes ESRP release settings
baywet Jun 19, 2025
770abaf
ci: inverts conditions
baywet Jun 19, 2025
fbd5443
ci: adds directory creation
baywet Jun 19, 2025
72776e3
ci: fixes mixed path separator
baywet Jun 19, 2025
7a4061b
ci: removes sonatype nexus plugin
baywet Jun 19, 2025
7f7101c
ci: adds missing signature of packages
baywet Jun 19, 2025
7c7aa2b
ci: temporary disable snapshot version
baywet Jun 19, 2025
e8dd1b4
ci: temporary disables snapshot suffix
baywet Jun 19, 2025
0c66f52
ci: disables maven metadata validation
baywet Jun 19, 2025
bba7509
ci: adds an output for the esrp zip
baywet Jun 19, 2025
a308f45
ci: moves zips merging to build stage
baywet Jun 19, 2025
63d82b2
ci: temp audi local properties
baywet Jun 19, 2025
b55288f
Revert "ci: temp audi local properties"
baywet Jun 19, 2025
8feb4d7
ci: fix adds missing signatures
baywet Jun 19, 2025
e1e2ac4
ci: restores snapshot emission capability
baywet Jun 19, 2025
628692b
ci: fixes validation
baywet Jun 19, 2025
8f111b9
ci: adds missing files for github release
baywet Jun 19, 2025
dceea8f
ci: removes persist credentials
baywet Jun 20, 2025
146fd03
ci: makes the version matching script more tolerant to different spacing
baywet Jun 20, 2025
33780bb
ci: avoid zipping files before esrp release
baywet Jun 20, 2025
8122405
ci: fix branch name for snapshots
baywet Jun 20, 2025
bccc6d2
ci: fixes cp arguments
baywet Jun 20, 2025
aa03b3d
fix: sanity release due to pipeline migration
baywet Jun 20, 2025
9c746fc
chore: removes detect secret since this is now done by ADO
baywet Jun 23, 2025
2204ba7
chore: removes external secrets baseline
baywet Jun 23, 2025
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
235 changes: 182 additions & 53 deletions .azure-pipelines/ci-build.yml

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ jobs:
java-version: 21
distribution: 'temurin'
cache: gradle
- name: Detect secrets
run: |
pip install detect-secrets
git ls-files -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline
- name: Build with Gradle
run: ./gradlew --no-daemon build -Pjava8=true
- name: Upload Unit Test Results
Expand Down
201 changes: 0 additions & 201 deletions .github/workflows/release.yml

This file was deleted.

133 changes: 0 additions & 133 deletions .secrets.baseline

This file was deleted.

14 changes: 0 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ plugins {
id "org.sonarqube" version "6.2.0.5505"
id 'com.github.spotbugs' version '6.2.0'
id "com.diffplug.spotless" version "7.0.4"
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}

sonar {
Expand All @@ -23,18 +22,5 @@ repositories {
mavenCentral()
}

nexusPublishing {
repositories {
sonatype {
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
username = properties.getProperty('sonatypeUsername')
password = properties.getProperty('sonatypePassword')
}
}
}
}

group = project.property('mavenGroupId')
version = "${mavenMajorVersion}.${mavenMinorVersion}.${mavenPatchVersion}${mavenCentralSnapshotArtifactSuffix}"
1 change: 0 additions & 1 deletion components/abstractions/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ buildscript {
maven {
url "https://plugins.gradle.org/m2/"
}
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
Expand Down
6 changes: 6 additions & 0 deletions components/abstractions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ publishing {
}
}
}
repositories {
maven {
name = "ADO"
url = layout.buildDirectory.dir("publishing-repository")
}
}
}

signing {
Expand Down
Loading