Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 911 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (18 loc) · 911 Bytes

Contributing

  1. Build the plugin and install it to local maven repo

    ./gradlew mirakle:build mirakle:publishMiraklePublicationToMavenLocal -x mirakle

  2. Add mavenLocal() to Mirakle's init script

    initscript {
         repositories {
             mavenLocal()
             jcenter()
         }
     }
    
  3. Make sure your init script uses the same Mirakle version that you defined in root build.gradle. Increment it just in case.

  4. Mirakle is targeting localhost in tests, so make sure you can ssh localhost without password. If not:

  • If it saying about Connection refused for Mac OSX read this, for Linux google...
  • If it required password do this
  1. Run the tests

    ./gradlew plugin-test:test -x mirakle