Code Monkey home page Code Monkey logo

gradle-sublimetext-plugin's Introduction

sublimeText Plugin for Gradle

The sublimeText plugin allows gradle to create a Sublime Text 2 project file.

##Usage Put the following into your build script and tweak the settings to your liking:

apply plugin: 'sublimeText'

buildscript {
  repositories {
    maven {
      url 'http://phildop.us/m2repo'
    }
    dependencies {
      classpath 'us.phildop:gradle-sublimetext-plugin:0.5'
    }
  }
}

sublimeText {
  // enter relevant (and optional) config stuff here, explained below
}

####sublimeProjectName

If set, the generated file will be named <sublimeProjectName>.sublime-project. Otherwise, it will default to the gradle project's name.

sublimeText {
  sublimeProjectName = 'custom-project-name'
}

####defaultFileExcludePatterns & defaultFolderExcludePatterns

Exclude unimportant files and folders generated by gradle and eclipse. These will be copied to each folder entry.

sublimeText {
  defaultFileExcludePatterns = ['.project', '.classpath', '.pydevproject']
  defaultFolderExcludePatterns = ['.gradle', 'bin', 'build', '.settings']
}

####addDependencyProjects

If set to true, any dependency project folders will be added.

sublimeText {
  addDependencyProjects = true
}

####SublimeJava

Generate paths for SublimeJava

sublimeText {
  generateSublimeJavaClasspath = true
  generateSublimeJavaSrcpath = true
}

####addGradleCompile

If set to true, generate a Sublime Text build system that calls gradle compileJava on project.

sublimeText {
  addGradleCompile = true
}

####addSublimeLinterConfig

If set to true, generate configuration for SublimeLinter.

sublimeText {
  addSublimeLinterConfig = true
}

####EclipseJavaFormatter

Options for EclipseJavaFormatter.

sublimeText {
  eclipseJavaFormatterConfigFile = "/path/to/config/org.eclipse.jdt.core.prefs"
  eclipseJavaFormatterSortImportsOrder = ["java", "javax", "org", "com"]
  eclipseJavaFormatterRestoreLineEndings = true
}

On the command line issue the following command:

gradle sublimeText

gradle-sublimetext-plugin's People

Contributors

i-am-a-paull avatar

Watchers

Dana P'Simer avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.