Skip to content

Commit

Permalink
Refactor package names from wso2.extensions to io.siddhi
Browse files Browse the repository at this point in the history
  • Loading branch information
pcnfernando committed Sep 17, 2019
1 parent af69e51 commit 30aa1d1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion component/pom.xml
Expand Up @@ -135,7 +135,7 @@
<Export-Package>
!org.jpmml.*,
!org.dmg.pmml.*,
org.wso2.extension.siddhi.gpl.execution.pmml.*
io.siddhi.gpl.execution.pmml.*
</Export-Package>
<Import-Package>
org.wso2.siddhi.core.*;version="${siddhi.version.range}",
Expand Down
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package io.siddhi.gpl.execution.pmml.pmml;
package io.siddhi.gpl.execution.pmml;

import io.siddhi.annotation.Example;
import io.siddhi.annotation.Extension;
Expand All @@ -40,7 +40,7 @@
import io.siddhi.core.util.config.ConfigReader;
import io.siddhi.core.util.snapshot.state.State;
import io.siddhi.core.util.snapshot.state.StateFactory;
import io.siddhi.gpl.execution.pmml.pmml.util.PMMLUtil;
import io.siddhi.gpl.execution.pmml.util.PMMLUtil;
import io.siddhi.query.api.definition.AbstractDefinition;
import io.siddhi.query.api.definition.Attribute;
import io.siddhi.query.api.exception.SiddhiAppValidationException;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package io.siddhi.gpl.execution.pmml.pmml.util;
package io.siddhi.gpl.execution.pmml.util;

import io.siddhi.core.exception.SiddhiAppCreationException;
import org.dmg.pmml.PMML;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package io.siddhi.gpl.execution.pmml.pmml;
package io.siddhi.gpl.execution.pmml;

import io.siddhi.core.SiddhiAppRuntime;
import io.siddhi.core.SiddhiManager;
Expand Down
2 changes: 1 addition & 1 deletion component/src/test/resources/testng.xml
Expand Up @@ -19,7 +19,7 @@
<suite name="MonogStoreTestSuite" verbose="1">
<test name="MonogStoreTest">
<classes>
<class name="io.siddhi.gpl.execution.pmml.pmml.PMMLModelProcessorTestCase" />
<class name="io.siddhi.gpl.execution.pmml.PMMLModelProcessorTestCase" />
</classes>
</test>
</suite>

0 comments on commit 30aa1d1

Please sign in to comment.