Skip to content

Commit

Permalink
Merge branch 'release-2.12.x' into TASK-5482
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfeSanahuja authored Jan 26, 2024
2 parents 9eaef09 + 86026da commit 874b0df
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/scripts/get_same_branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ if [[ -z $BRANCH_NAME ]]; then
exit 1
fi

if [[ $BRANCH_NAME != "TASK-"* ]]; then
echo "No need to check dependencies."
exit 0
fi

function install(){
local REPO=$1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
cache: 'maven'
- name: Install dependencies branches
run: |
Expand Down
1 change: 0 additions & 1 deletion opencga-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<warName>${opencga.war.name}</warName>
<!--
Expand Down
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@
<servlet-api.version>2.5-20081211</servlet-api.version>

<kryo.version>2.23.0</kryo.version>
<lombok.version>1.18.30</lombok.version>
<maven-war-plugin.version>3.4.0</maven-war-plugin.version>
</properties>

<scm>
Expand Down Expand Up @@ -987,6 +989,12 @@
<artifactId>grep4j</artifactId>
<version>${grep4j.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
Expand Down Expand Up @@ -1087,6 +1095,7 @@
<artifactId>kryo</artifactId>
<version>${kryo.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand All @@ -1111,6 +1120,11 @@
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${maven-war-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>

Expand Down

0 comments on commit 874b0df

Please sign in to comment.