Questions tagged [axion-release-plugin]

7 questions
2
votes
1 answer

Replace transitive dependency of Gradle plugin

The axion-release Gradle plugin has a dependency on the unmaintained com.jcraft:jsch:0.1.55 lib. The com.github.mwiede:jsch fork is a drop-in replacement for jcraft jsch providing the same namespace. How can I replace the plugin's…
Andrew
  • 1,031
  • 10
  • 24
2
votes
1 answer

Gradle Release Plugin for projects not following semantic versioning scheme

I'm writing a components that will be working with some particular version of platform. Let's say the platform is in version 1.18.0, then I want to release component e.g. with version 1.18.0.1, then 1.18.0.2. If platform updates I want to release…
1
vote
1 answer

Where does axion-release plugin currentVersion come from?

I am using gradle, I added the plugin plugins { id 'pl.allegro.tech.build.axion-release' version '1.14.0' } now when I am running ./gradlew currentVersion I am getting Project version: 0.1.0-SNAPSHOT I tried adding a gradle.properties that…
D. Joe
  • 573
  • 1
  • 9
  • 17
1
vote
0 answers

axion-release-plugin: Execution failed for task ':release'

Please advise me how to fix this issue. Thank you. Here is the my environment information: Gradle 6.8 Kotlin: 1.4.20 Groovy: 2.5.12 Ant: Apache Ant(TM) version 1.10.9 compiled on September 27 2020 JVM: 11.0.11 (AdoptOpenJDK 11.0.11+9) OS: Mac OS X…
1
vote
1 answer

Releasing with Gradle axion failing from Windows, but works from Linux

Hi, Just trying a simple code with axion plugin. Although, the same code works pretty well on Linux. I am using GIT version - "git version 2.32.0.windows.1" Gradle Version - "Gradle 7.2" axion-release version "1.13.2". My build.gradle looks like…
1
vote
1 answer

Pushing git tags from bitbucket pipelines?

I would like to use axion-release-plugin which is adding tags to git repository. Now I would like to find a way to make git able to push tags from bitbucket pipeline. How I can achieve that?
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
1 answer

The above error occurred due to component

import './App.css'; import React from 'react'; import axios from 'axios'; import {useState,useEffect} from 'react'; function App() { const [data,setData] = useState([]); useEffect(() => { axios .get("http://127.0.0.1:5000") …