Skip to content

Commit

Permalink
Extracted intelliLang name into property
Browse files Browse the repository at this point in the history
  • Loading branch information
hurricup committed Apr 7, 2020
1 parent ec8e188 commit 9403468
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ tasks.coveralls {
}

intellij {
def pluginList = ["PsiViewer:$psiViewerVersion", 'platform-langInjection',
def pluginList = ["PsiViewer:$psiViewerVersion", intelliLangPlugin,
project(':perl5.plugin'),
project(':perl5.transport.docker'),
project(':perl5.transport.wsl'),
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ clionVersion=192.4787.12-EAP-SNAPSHOT
pluginVersion=201
pluginBuild=
psiViewerVersion=201-SNAPSHOT
intelliLangPlugin=IntelliLang
javaVersion=1.8
javaTargetVersion=1.8
lexer_skeleton=grammar/Perl5.skeleton
Expand Down
4 changes: 2 additions & 2 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2019 Alexandr Evstigneev
* Copyright 2015-2020 Alexandr Evstigneev
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -35,7 +35,7 @@ sourceSets {

intellij {
type 'IC'
intellij.plugins = ["PsiViewer:$psiViewerVersion", 'platform-langInjection', 'coverage', 'java']
intellij.plugins = ["PsiViewer:$psiViewerVersion", intelliLangPlugin, 'coverage', 'java']
}

prepareSandbox {
Expand Down
4 changes: 2 additions & 2 deletions plugin/intelliLang/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015-2019 Alexandr Evstigneev
* Copyright 2015-2020 Alexandr Evstigneev
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,6 +27,6 @@ dependencies{

intellij {
type 'IC'
intellij.plugins = ['platform-langInjection']
intellij.plugins = [intelliLangPlugin]
}

0 comments on commit 9403468

Please sign in to comment.