Extend Sensor Link Extension!!
Hi
I would like to develop an extension that extends the Sensor Link extension for the PI system. The idea is to allow the user to enter PI tags separated by commas and insert them directly to any operator in the sensor link extension.
However, I face an issue when I try to make my new extension depend on the sensor link extension. I don't know what is the correct namespace to add to the build.gradle file:
I would like to develop an extension that extends the Sensor Link extension for the PI system. The idea is to allow the user to enter PI tags separated by commas and insert them directly to any operator in the sensor link extension.
However, I face an issue when I try to make my new extension depend on the sensor link extension. I don't know what is the correct namespace to add to the build.gradle file:
dependencies {
rapidminer '9.8.0'
extension namespace: 'sensorlink', version: '1.4.2'
//extension namespace: 'text', version: '8.1.0'
}
Also, I tried to download the sensor link (.jar) and create a new folder called libs and add the following line to the build.gradle file:
Also, I tried to download the sensor link (.jar) and create a new folder called libs and add the following line to the build.gradle file:
flatDir {
dirs 'libs'
}
But I don't know if the extension was added to the project or not. So how could I check and use the extension for development?
But I don't know if the extension was added to the project or not. So how could I check and use the extension for development?