1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0"?>
- <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>
- <parent>
- <artifactId>cryptolib</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>2.1.5-4</version>
- </parent>
- <artifactId>cryptolib-digital-envelope</artifactId>
- <name>Digital Envelope</name>
- <dependencies>
- <dependency>
- <artifactId>cryptolib-api-digital-envelope</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>cryptolib-commons</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>cryptolib-primitives</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>cryptolib-symmetric</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>cryptolib-asymmetric</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <artifactId>cryptolib-default-policies</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <artifactId>cryptolib-test-tools</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <artifactId>cryptolib-primitives</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- <type>test-jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <artifactId>cryptolib-asymmetric</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- <type>test-jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <artifactId>cryptolib-default-policies</artifactId>
- <groupId>com.scytl.cryptolib</groupId>
- <version>${project.version}</version>
- <type>test-jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|