Skip to content

Commit

Permalink
build: remove Travis and Bintray, disable codecov and sonarqube (#1113)
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Feb 4, 2021
1 parent 6957491 commit 7982592
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 168 deletions.
14 changes: 0 additions & 14 deletions .codecov.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/decompilation-error.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ assignees: ''
---

**Checks before report**
- check [latest unstable build](https://bintray.com/skylot/jadx/unstable/_latestVersion#files) (maybe issue already fixed)
- check [Troubleshooting Q&A](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A) section on wiki
- search existing issues by exception message

Expand Down
37 changes: 0 additions & 37 deletions .releaserc.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in
## Open Issue

1. Before proceed please do:
- check [latest unstable build](https://bintray.com/skylot/jadx/unstable/_latestVersion#files) (maybe issue already fixed)
- check [Troubleshooting Q&A](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A) section on wiki
- search existing issues by exception message

Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

## JADX

[![Build Status](https://travis-ci.com/skylot/jadx.svg?branch=master)](https://travis-ci.com/skylot/jadx)
[![Code Coverage](https://codecov.io/gh/skylot/jadx/branch/master/graph/badge.svg)](https://codecov.io/gh/skylot/jadx)
[![Build status](https://github.com/skylot/jadx/workflows/Test%20build/badge.svg)](https://github.com/skylot/jadx/actions?query=workflow%3A%22Test+build%22)
[![Alerts from lgtm.com](https://img.shields.io/lgtm/alerts/g/skylot/jadx.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/skylot/jadx/alerts/)
[![SonarQube Bugs](https://sonarcloud.io/api/project_badges/measure?project=jadx&metric=bugs)](https://sonarcloud.io/dashboard?id=jadx)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

**jadx** - Dex to Java decompiler

Expand All @@ -31,9 +29,7 @@ See these features in action here: [jadx-gui features overview](https://github.c


### Download
- latest [unstable build: ![Download](https://api.bintray.com/packages/skylot/jadx/unstable/images/download.svg) ](https://bintray.com/skylot/jadx/unstable/_latestVersion#files)
- release from [github: ![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)](https://github.com/skylot/jadx/releases/latest)
- release from [bintray: ![Download](https://api.bintray.com/packages/skylot/jadx/releases/images/download.svg) ](https://bintray.com/skylot/jadx/releases/_latestVersion#files)

After download unpack zip file go to `bin` directory and run:
- `jadx` - command line version
Expand Down
20 changes: 0 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
plugins {
id 'org.sonarqube' version '3.1'
id 'com.github.ben-manes.versions' version '0.36.0'
id "com.diffplug.spotless" version "5.9.0"
}
Expand All @@ -10,7 +9,6 @@ println("jadx version: ${jadxVersion}")

allprojects {
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'checkstyle'

version = jadxVersion
Expand Down Expand Up @@ -57,33 +55,15 @@ allprojects {
repositories {
mavenLocal()
mavenCentral()
jcenter()
google()
}

jacoco {
toolVersion = "0.8.6"
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}

checkstyleMain {
// exclude all sources in samples module
exclude '**/samples/**'
}
}

sonarqube {
properties {
property 'sonar.exclusions', '**/jadx/samples/**/*,**/test-app/**/*'
property 'sonar.coverage.exclusions', '**/jadx/gui/**/*'
}
}

spotless {
java {
target fileTree(rootDir).matching {
Expand Down
2 changes: 1 addition & 1 deletion jadx-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
runtimeOnly(project(':jadx-plugins:jadx-smali-input'))
runtimeOnly(project(':jadx-plugins:jadx-java-convert'))

implementation 'com.beust:jcommander:1.80'
implementation 'com.beust:jcommander:1.78'
implementation 'ch.qos.logback:logback-classic:1.2.3'
}

Expand Down
8 changes: 1 addition & 7 deletions jadx-gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation(project(':jadx-core'))

implementation(project(":jadx-cli"))
implementation 'com.beust:jcommander:1.80'
implementation 'com.beust:jcommander:1.78'
implementation 'ch.qos.logback:logback-classic:1.2.3'

implementation 'com.fifesoft:rsyntaxtextarea:3.1.2'
Expand Down Expand Up @@ -81,9 +81,3 @@ launch4j {
downloadUrl = 'https://adoptopenjdk.net/releases.html?variant=openjdk11&jvmVariant=hotspot#x64_win'
bundledJrePath = '%JAVA_HOME%'
}

test {
jacoco {
enabled = false
}
}
14 changes: 0 additions & 14 deletions scripts/bintray-upload.sh

This file was deleted.

9 changes: 0 additions & 9 deletions scripts/travis-checks.sh

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/travis-master.sh

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/travis-release.sh

This file was deleted.

0 comments on commit 7982592

Please sign in to comment.