dataoperations.SE_module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.clarussecure</groupId>
<artifactId>dataoperations.SE_module</artifactId>
<version>1.0.1</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<groupId>eu.clarussecure</groupId>
<artifactId>dataoperations.SE_module</artifactId>
<version>1.0.1</version>
<name>Searchable Encryption Module</name>
<description>CLARUS Searchable encryption module</description>
<url>http://clarussecure.eu</url>
<organization>
<name>The CLARUS Consortium</name>
<url>http://www.clarussecure.eu/</url>
</organization>
<developers>
<developer>
<name>Clarus Team</name>
<email>contact@clarussecure.eu</email>
<organization>Clarus Consortium</organization>
<organizationUrl>http://clarussecure.eu</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>TO BE DEFINED</name>
<url>TO BE DEFINED</url>
<distribution>TO BE DEFINED</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:http://github.com/clarus-proxy/searchableencryption-module.git</connection>
<developerConnection>scm:git:https://github.com/clarus-proxy/searchableencryption-module.git</developerConnection>
<url>http://github.com/clarus-proxy/searchableencryption-module/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>2.0.1</version>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
<configuration>
<configFile>${project.basedir}/eclipse-formatter-config.xml</configFile>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>eu.clarussecure</groupId>
<artifactId>dataoperations-api</artifactId>
<version>2.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.6</version>
</dependency>
</dependencies>
</project>