Skip to content

Instantly share code, notes, and snippets.

View STeveShary's full-sized avatar

STeve Shary STeveShary

  • ACV Auctions
  • Buffalo, NY
View GitHub Profile
@STeveShary
STeveShary / build.gradle
Created December 24, 2015 17:37
The module settings to setup Spring Inspection and Infinitest.
apply plugin 'idea'
//...
idea {
module {
iml.withXml { xmlFile ->
// Find or define the facetManager XML node.
def facetManager = xmlFile.asNode().component.find { it.@name == 'FacetManager' } as Node
@STeveShary
STeveShary / build.gradle
Last active December 24, 2015 16:41
Snippet that will setup your VCS, JDK, enable annotation processors (for Lombok) and configure the VCS root.
apply plugin: 'idea'
//...
idea {
project {
languageLevel = '1.8'
vcs = 'Git'
ipr.withXml { xmlFile ->