-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Boeck
committed
Aug 7, 2018
1 parent
04cee57
commit 82ddc98
Showing
380 changed files
with
12,681 additions
and
6,139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ config/pmd/* | |
.idea/ | ||
*.iml | ||
**/*.tutorial | ||
**/*.template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version=8.2.0 | ||
version=9.0.0 | ||
group=com.rapidminer.studio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apply plugin: 'java' | ||
|
||
def templateSrc = file('src/main/resources/com/rapidminer/resources/template/src').absolutePath | ||
// Generate .template files task | ||
task buildTemplates << { | ||
new File(templateSrc).eachDir { | ||
ant.zip(destfile: templateSrc+'/../'+it.name+'.template', basedir: it.path){ | ||
} | ||
} | ||
} | ||
buildTemplates.group = 'build' | ||
buildTemplates.description = 'Assembles template archives.' | ||
|
||
//Run buildTemplates before the jar task | ||
jar.dependsOn(buildTemplates) | ||
|
||
//Exclude template source files from build | ||
sourceSets.main.resources{ | ||
exclude 'com/rapidminer/resources/template/src/**' | ||
exclude 'com/rapidminer/resources/template/src' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.