renamed filesystem layer maven modules

This commit is contained in:
Sebastian Stenzel
2015-12-18 00:06:31 +01:00
parent 25eed3dc4a
commit b22ac719f2
40 changed files with 43 additions and 19 deletions

View File

@@ -12,7 +12,7 @@
<version>0.11.0-SNAPSHOT</version>
</parent>
<artifactId>filesystem-api</artifactId>
<name>Cryptomator filesystem API</name>
<name>Cryptomator filesystem: API</name>
<dependencies>
<!-- commons -->

View File

@@ -14,8 +14,8 @@
<artifactId>main</artifactId>
<version>0.11.0-SNAPSHOT</version>
</parent>
<artifactId>crypto-layer</artifactId>
<name>Cryptomator encrypted filesystem layer</name>
<artifactId>filesystem-crypto</artifactId>
<name>Cryptomator filesystem: Encryption layer</name>
<properties>
<bouncycastle.version>1.51</bouncycastle.version>
@@ -29,7 +29,7 @@
</dependency>
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>shortening-layer</artifactId>
<artifactId>filesystem-nameshortening</artifactId>
</dependency>
<!-- Crypto -->

View File

@@ -15,7 +15,7 @@
<version>0.11.0-SNAPSHOT</version>
</parent>
<artifactId>filesystem-inmemory</artifactId>
<name>Cryptomator in-memory filesystem</name>
<name>Cryptomator filesystem: In-memory mock</name>
<dependencies>
<dependency>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%16d %-5p [%c{1}:%L] %m%n" />
<ThresholdFilter level="WARN" onMatch="DENY" onMismatch="ACCEPT" />
</Console>
<Console name="StdErr" target="SYSTEM_ERR">
<PatternLayout pattern="%16d %-5p [%c{1}:%L] %m%n" />
<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="DENY" />
</Console>
</Appenders>
<Loggers>
<Root level="DEBUG">
<AppenderRef ref="Console" />
<AppenderRef ref="StdErr" />
</Root>
</Loggers>
</Configuration>

View File

@@ -14,8 +14,8 @@
<artifactId>main</artifactId>
<version>0.11.0-SNAPSHOT</version>
</parent>
<artifactId>shortening-layer</artifactId>
<name>Cryptomator name shortening filesystem layer</name>
<artifactId>filesystem-nameshortening</artifactId>
<name>Cryptomator filesystem: Name shortening layer</name>
<dependencies>
<dependency>

View File

@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2015 Markus Kreusch This file is licensed under the terms
of the MIT license. See the LICENSE.txt file for more info. -->
<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">
<!--
Copyright (c) 2015 Markus Kreusch
This file is licensed under the terms of the MIT license.
See the LICENSE.txt file for more info.
-->
<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>
<groupId>org.cryptomator</groupId>
@@ -10,13 +12,15 @@
<version>0.11.0-SNAPSHOT</version>
</parent>
<artifactId>filesystem-nio</artifactId>
<name>Cryptomator filesystem: NIO-based physical layer</name>
<description>FileSystem implementation to access the real file system of an operating system</description>
<dependencies>
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>filesystem-api</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
@@ -29,7 +33,7 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
@@ -44,6 +48,4 @@
</plugin>
</plugins>
</build>
<description>FileSystem implementation to access the real file system of an operating system</description>
<name>Cryptomator NIO Filesystem</name>
</project>

View File

@@ -66,12 +66,12 @@
</dependency>
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>shortening-layer</artifactId>
<artifactId>filesystem-nameshortening</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>crypto-layer</artifactId>
<artifactId>filesystem-crypto</artifactId>
<version>${project.version}</version>
</dependency>
@@ -216,12 +216,12 @@
<module>filesystem-api</module>
<module>filesystem-inmemory</module>
<module>filesystem-nio</module>
<module>crypto-layer</module>
<module>filesystem-nameshortening</module>
<module>filesystem-crypto</module>
<module>crypto-api</module>
<module>crypto-aes</module>
<module>core</module>
<module>ui</module>
<module>shortening-layer</module>
</modules>
<profiles>