Thank you for your respone. It is good to know that it is ok to use Proguard from the repositories. The self contained approach has its benefits also.
Hello and congratulations for the good work done so far in Proguard. I would like to propose to change the gradle examples in order to get Proguard from Maven Repo. In particular to replace these parts of the various example *.gradle scripts. buildscript { repositories { flatDir dirs: '../../lib' } dependencies { classpath ':proguard' } } With something like the following: // Tell Gradle where to find the ProGuard task. buildscript { repositories { mavenLocal() //in case it is already downloaded...
Hello and congratulations for the good work done so far in Proguard. I would like to propose to change the gradle examples in order to get Proguard from Maven Repo. In particular to replace these parts of the *.gradle scripts. buildscript { repositories { flatDir dirs: '../../lib' } dependencies { classpath ':proguard' } } With something like the following: // Tell Gradle where to find the ProGuard task. buildscript { repositories { mavenLocal() //in case it is already downloaded mavenCentral() }//end...