Skip to content

Commit

Permalink
Delete groovy dependency from add-on #45
Browse files Browse the repository at this point in the history
  • Loading branch information
zaharchenko committed Mar 20, 2020
1 parent f534acf commit ac21f67
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

buildscript {
ext.cubaVersion = '7.1.0'
ext.cubaVersion = rootProject.hasProperty('cubaVersion') ? rootProject['cubaVersion'] : '7.1-SNAPSHOT'
repositories {
mavenLocal()

Expand Down Expand Up @@ -85,7 +85,7 @@ limitations under the License.'''

dependencies {
appComponent("com.haulmont.cuba:cuba-global:$cubaVersion")
appComponent("org.strangeway.responsive:sw-responsive-global:1.3.0")
appComponent("org.strangeway.responsive:sw-responsive-global:1.4.0")
}

def hsql = 'org.hsqldb:hsqldb:2.4.1'
Expand All @@ -96,21 +96,13 @@ configure([globalModule, coreModule, guiModule, webModule]) {
apply(plugin: 'java')
apply(plugin: 'maven')
apply(plugin: 'cuba')
apply(plugin: 'groovy')
apply(plugin: 'addon-gradle-plugin')

sourceSets {
test {
groovy {
srcDirs = ['test']
}
}
}

dependencies {
compile('org.codehaus.groovy:groovy-all:2.4.11')
testCompile('junit:junit:4.12')
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4-rc-3'
compile('org.javatuples:javatuples:1.2')
}

Expand Down

0 comments on commit ac21f67

Please sign in to comment.