Skip to content

Commit

Permalink
Merge pull request #47 from reportportal/rc/5.11.0
Browse files Browse the repository at this point in the history
Release 5.11.0
  • Loading branch information
pbortnik authored Feb 12, 2024
2 parents 1f859f5 + a443396 commit 615d8fd
Show file tree
Hide file tree
Showing 21 changed files with 5,573 additions and 4,181 deletions.
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.7.0
BOM_VERSION: 5.7.0
SCRIPTS_VERSION: 5.10.0
BOM_VERSION: 5.11.0

jobs:
release:
Expand Down
27 changes: 7 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'java'
id 'jacoco'
id "com.github.spotbugs" version "3.0.0"
id "com.moowork.node" version "1.3.1"
id "com.github.node-gradle.node" version "2.2.1"
id 'nu.studer.jooq' version '3.0.3'
}

Expand All @@ -21,26 +21,16 @@ apply from: scriptsUrl + '/signing.gradle'

repositories {
maven { url "https://packages.atlassian.com/maven/repository/public" }
mavenCentral()
mavenLocal()
if (releaseMode) {
dependencyRepos.forEach { path ->
maven {
setUrl("https://maven.pkg.github.com/reportportal/${path}")
credentials {
username = findProperty("githubUserName")
password = findProperty("githubToken")
}
}
}
} else {
mavenCentral { url "https://repo1.maven.org/maven2" }

if (!releaseMode) {
maven { url 'https://jitpack.io' }
}
}

dependencyManagement {
imports {
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:5.7.0' : 'com.github.reportportal:commons-bom:5.7.0')
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:5.11.2' : 'com.epam.reportportal:commons-bom:5.11.2')
}
}

Expand All @@ -49,13 +39,10 @@ dependencies {
implementation 'com.epam.reportportal:plugin-api'
annotationProcessor 'com.epam.reportportal:plugin-api'
} else {
implementation 'com.github.reportportal:plugin-api:b7cced3'
annotationProcessor 'com.github.reportportal:plugin-api:b7cced3'
implementation 'com.epam.reportportal:plugin-api'
annotationProcessor 'com.epam.reportportal:plugin-api'
}

// implementation group: 'org.glassfish', name: 'javax.el', version: '3.0.0'
// implementation 'org.springframework.boot:spring-boot-starter-web'

implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
implementation group: 'org.jooq', name: 'jooq', version: '3.14.4'
jooqRuntime 'org.postgresql:postgresql:42.2.13'
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.7.3
version=5.11.0
description=EPAM Report Portal. Cloud Jira plugin
pluginId = JIRA Cloud
Loading

0 comments on commit 615d8fd

Please sign in to comment.