buildscript { repositories { mavenLocal() maven { url "http://dev.fit-bank.com/nexus/content/groups/public" } maven { url "http://dev.fit-bank.com/nexus/content/groups/public-snapshots" } } dependencies { classpath 'com.fitbank.herramientas:persistencefinder-gradle-plugin:+' } } plugins { id 'io.spring.dependency-management' version '0.4.0.RELEASE' } group = 'com.fitbank' allprojects { apply from: "$rootDir/common.gradle" } subprojects { apply plugin: 'groovy' sourceCompatibility = 1.8 targetCompatibility = 1.8 group = 'com.fitbank.persistence' version = '2.01.067.095' if (!name.matches(/persistence-base|hbcommon|schema-utils/)) { apply plugin: 'com.fitbank.persistencefinder' dependencies { compile project(':persistence-base') compile 'org.projectlombok:lombok' } } }