orientdb-etl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-etl</artifactId>
<version>3.2.51</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>orientdb-parent</artifactId>
<groupId>com.orientechnologies</groupId>
<version>3.2.51</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>orientdb-etl</artifactId>
<name>OrientDB ETL</name>
<description>ETL tools for OrientDB NoSQL document graph dbms</description>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<properties>
<property>
<name>listener</name>
<value>com.orientechnologies.OJUnitTestListener</value>
</property>
</properties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>com.orientechnologies:etl</include>
<include>org.apache.commons:commons-csv</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.commons.csv</pattern>
<shadedPattern>com.orientechnologies.apache.commons.csv</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
<configuration>
<dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>java8</id>
<properties>
<argLine>-ea -Xmx${heapSize} -Dstorage.diskCache.bufferSize=4096
-Dindex.flushAfterCreate=false
-Dstorage.makeFullCheckpointAfterCreate=false
-Dstorage.makeFullCheckpointAfterOpen=false
-Dstorage.makeFullCheckpointAfterClusterCreate=false
-Dmemory.directMemory.trackMode=true
-Dstorage.wal.syncOnPageFlush=false
-Dstorage.configuration.syncOnUpdate=false
-Ddb.makeFullCheckpointOnIndexChange=false
-Ddb.makeFullCheckpointOnSchemaChange=false
-Dsecurity.userPasswordSaltIterations=10
-Djava.util.logging.manager=com.orientechnologies.common.log.ShutdownLogManager
-Dstorage.diskCache.checksumMode=storeAndThrow
-Dsecurity.warningDefaultUsers=false</argLine>
</properties>
</profile>
<profile>
<id>java11</id>
<properties>
<argLine>-ea -Xmx${heapSize} -Dstorage.diskCache.bufferSize=4096
-Dindex.flushAfterCreate=false
-Dstorage.makeFullCheckpointAfterCreate=false
-Dstorage.makeFullCheckpointAfterOpen=false
-Dstorage.makeFullCheckpointAfterClusterCreate=false
-Dmemory.directMemory.trackMode=true
-Dstorage.wal.syncOnPageFlush=false
-Dstorage.configuration.syncOnUpdate=false
-Ddb.makeFullCheckpointOnIndexChange=false
-Ddb.makeFullCheckpointOnSchemaChange=false
-Dsecurity.userPasswordSaltIterations=10
-Djava.util.logging.manager=com.orientechnologies.common.log.ShutdownLogManager
-Dstorage.diskCache.checksumMode=storeAndThrow
-Dsecurity.warningDefaultUsers=false
--add-opens jdk.unsupported/sun.misc=ALL-UNNAMED
--add-opens java.base/sun.security.x509=ALL-UNNAMED</argLine>
</properties>
</profile>
<profile>
<id>crash-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>secondary-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<includes>
<include>**/*ST.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-test-commons</artifactId>
<version>3.2.51</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
<exclusion>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<artifactId>assertj-core</artifactId>
<groupId>org.assertj</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-core</artifactId>
<version>3.2.51</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.21.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-lucene</artifactId>
<version>3.2.51</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<version>3.2.51</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-server</artifactId>
<version>3.2.51</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-tools</artifactId>
<version>3.2.51</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>