Skip to content

Commit

Permalink
Merge pull request #69 from reportportal/master-to-develop
Browse files Browse the repository at this point in the history
Master to develop
  • Loading branch information
APiankouski authored Dec 20, 2024
2 parents f88c845 + 9088c8b commit 84fe9fc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
env:
REPOSITORY_URL: 'https://maven.pkg.github.com'
UPSTREAM_REPOSITORY_URL: 'https://oss.sonatype.org'
PACKAGE_SUFFIXES: '-javadoc.jar,-javadoc.jar.asc,-sources.jar,-sources.jar.asc,.jar,.jar.asc,.pom,.pom.asc'
PACKAGE_SUFFIXES: '-javadoc.jar,-javadoc.jar.asc,-sources.jar,-sources.jar.asc,-all.jar,-all.jar.asc,.pom,.pom.asc'
PACKAGE: 'com.epam.reportportal'


Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:

env:
GH_USER_NAME: github.actor
SCRIPTS_VERSION: 5.12.0
BOM_VERSION: 5.12.1
SCRIPTS_VERSION: 5.12.1
BOM_VERSION: 5.13.0

jobs:
release:
Expand Down
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {

dependencyManagement {
imports {
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + getProperty('bom.version') : 'com.epam.reportportal:commons-bom:5.12.1')
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:' + getProperty('bom.version') : 'com.epam.reportportal:commons-bom:5.13.0')
}
}

Expand All @@ -37,8 +37,8 @@ dependencies {
annotationProcessor 'com.epam.reportportal:plugin-api'
} else {
implementation 'com.github.reportportal:commons-dao:a98c172'
implementation 'com.github.reportportal:plugin-api:develop-SNAPSHOT'
annotationProcessor 'com.github.reportportal:plugin-api:develop-SNAPSHOT'
implementation 'com.github.reportportal:plugin-api:1c2f758'
annotationProcessor 'com.github.reportportal:plugin-api:1c2f758'
}
implementation 'org.hibernate:hibernate-core:5.6.15.Final'

Expand Down Expand Up @@ -118,6 +118,9 @@ shadowJar {
configurations = [project.configurations.compileClasspath]
zip64 true
dependencies {
include(dependency('com.squareup.okhttp:.*:.*'))
include(dependency('io.gsonfire:gson-fire:.*'))
include(dependency('org.threeten:threetenbp:.*'))
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=5.12.0
version=5.12.1
description=EPAM Report Portal. Azure DevOps plugin
pluginId = Azure DevOps

0 comments on commit 84fe9fc

Please sign in to comment.