siddhi-io-file
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.extension.siddhi.io.file</groupId> <artifactId>siddhi-io-file</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ WSO2 Inc. licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>siddhi-io-file-parent</artifactId> <groupId>org.wso2.extension.siddhi.io.file</groupId> <version>1.1.0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>siddhi-io-file</artifactId> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>org.wso2.transport.file</groupId> <artifactId>org.wso2.transport.file</artifactId> </dependency> <dependency> <groupId>org.wso2.transport.file</groupId> <artifactId>org.wso2.transport.remote-file-system</artifactId> </dependency> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-query-compiler</artifactId> </dependency> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-core</artifactId> </dependency> <dependency> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-annotations</artifactId> </dependency> <dependency> <groupId>org.wso2.extension.siddhi.map.xml</groupId> <artifactId>siddhi-map-xml</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wso2.extension.siddhi.map.json</groupId> <artifactId>siddhi-map-json</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wso2.extension.siddhi.map.text</groupId> <artifactId>siddhi-map-text</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wso2.extension.siddhi.map.csv</groupId> <artifactId>siddhi-map-csv</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons.wso2</groupId> <artifactId>commons-vfs2</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>documentation-deploy</id> <build> <plugins> <plugin> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-doc-gen</artifactId> <version>${siddhi.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>deploy-mkdocs-github-pages</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>false</skipTests> <suiteXmlFiles> <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile> </suiteXmlFiles> <argLine>${surefireArgLine} -ea -Xmx512m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-Name>${project.artifactId}</Bundle-Name> <Private-Package> org.wso2.carbon.connector.framework.server.polling.*, org.wso2.transport.remotefilesystem.*, org.wso2.carbon.messaging.*, org.apache.commons.vfs2.*, org.wso2.transport.file.*, org.apache.commons.net.*, org.quartz.* </Private-Package> <Export-Package> org.wso2.extension.siddhi.io.file.*, !org.wso2.carbon.connector.framework.*, !org.wso2.transport.remotefilesystem.*, !org.wso2.carbon.messaging.*, !org.apache.commons.vfs2.*, !org.wso2.transport.file.*, !org.apache.commons.net.*, !org.quartz.* </Export-Package> <Import-Package> !org.wso2.carbon.messaging.*, !org.wso2.transport.remotefilesystem.*, !org.apache.commons.vfs2.*, !org.wso2.transport.file.*, !org.apache.commons.net.*, *;resolution:=optional </Import-Package> <Include-Resource> META-INF=target/classes/META-INF </Include-Resource> </instructions> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>jacoco-initialize</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${basedir}/target/coverage-reports/jacoco.exec</destFile> <propertyName>surefireArgLine</propertyName> </configuration> </execution> <execution> <id>jacoco-site</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${basedir}/target/coverage-reports/jacoco.exec</dataFile> <outputDirectory>${basedir}/target/coverage-reports/</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.wso2.siddhi</groupId> <artifactId>siddhi-doc-gen</artifactId> <version>${siddhi.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>generate-md-docs</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!--<properties> <mavan.findbugsplugin.exclude.file>../findbugs-exclude.xml</mavan.findbugsplugin.exclude.file> </properties>--> </project>