Skip to content

Commit

Permalink
Bumped RapidMiner Studio dependency to 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gisa Meier committed May 12, 2023
1 parent 36a46f2 commit e73d5cd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ RapidMiner Extension Template
A template project for creating a RapidMiner Studio extension.

### Prerequisite
* Requires Gradle 4.10.2+ (get it [here](http://gradle.org/installation) or use the Gradle wrapper shipped with this template)
* Requires Gradle 6.8.1+ (use the Gradle wrapper shipped with this template or get it [here](http://gradle.org/installation))

* Requires Java 11

### Getting started
1. Clone the extension template

2. Change the extension settings in _build.gradle_ (e.g. replace 'Template' by the desired extension name)

3. Initialize the extension project by executing the _initializeExtensionProject_ Gradle task (e.g. via 'gradlew --no-daemon initializeExtensionProject')
3. Initialize the extension project by executing the _initializeExtensionProject_ Gradle task (e.g. via 'gradlew initializeExtensionProject')

4. Add an extension icon by placing an image named "icon.png" in _src/main/resources/META-INF/_.

Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
buildscript {
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
mavenCentral()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
}

plugins { id 'com.rapidminer.extension' version '0.9.4' }
plugins { id 'com.rapidminer.extension' version '0.10.0' }

// Define Maven artifact repositories
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
mavenCentral()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}

extensionConfig {
Expand Down Expand Up @@ -44,8 +44,8 @@ extensionConfig {

// define RapidMiner version and extension dependencies
dependencies {
rapidminer '9.8.0'
//extension namespace: 'text', version: '8.1.0'
rapidminer '10.1.1'
//extension namespace: 'text', version: '10.0.0'
}
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e73d5cd

Please sign in to comment.