Updated Branches: refs/heads/master ef2276cad -> 46f1a8eff
prepare new module for storage Project: http://git-wip-us.apache.org/repos/asf/mina-vysper/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-vysper/commit/3515de67 Tree: http://git-wip-us.apache.org/repos/asf/mina-vysper/tree/3515de67 Diff: http://git-wip-us.apache.org/repos/asf/mina-vysper/diff/3515de67 Branch: refs/heads/master Commit: 3515de6784ee3c0575458cb7a4f9b09881e97fb7 Parents: ef2276c Author: Bernd Fondermann <[email protected]> Authored: Thu Jul 4 11:44:56 2013 +0200 Committer: Bernd Fondermann <[email protected]> Committed: Thu Jul 4 11:44:56 2013 +0200 ---------------------------------------------------------------------- server/core/pom.xml | 2 ++ server/pom.xml | 1 + server/storage/jcr/pom.xml | 77 +++++++++++++++++++++++++++++++++++++++++ server/storage/pom.xml | 41 ++++++++++++++++++++++ 4 files changed, 121 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-vysper/blob/3515de67/server/core/pom.xml ---------------------------------------------------------------------- diff --git a/server/core/pom.xml b/server/core/pom.xml index c565d8e..5def5c3 100644 --- a/server/core/pom.xml +++ b/server/core/pom.xml @@ -67,6 +67,7 @@ <artifactId>mina-core</artifactId> </dependency> +<!-- TODO remove... --> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> @@ -78,6 +79,7 @@ <artifactId>jackrabbit-core</artifactId> <optional>true</optional> </dependency> +<!-- ...TODO remove --> <dependency> <groupId>commons-codec</groupId> http://git-wip-us.apache.org/repos/asf/mina-vysper/blob/3515de67/server/pom.xml ---------------------------------------------------------------------- diff --git a/server/pom.xml b/server/pom.xml index bcf9fea..673a5e9 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -33,6 +33,7 @@ <modules> <module>core</module> <module>extensions</module> + <module>storage</module> </modules> <profiles> http://git-wip-us.apache.org/repos/asf/mina-vysper/blob/3515de67/server/storage/jcr/pom.xml ---------------------------------------------------------------------- diff --git a/server/storage/jcr/pom.xml b/server/storage/jcr/pom.xml new file mode 100644 index 0000000..f7d629c --- /dev/null +++ b/server/storage/jcr/pom.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> + <!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF 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/maven-v4_0_0.xsd"> + <parent> + <artifactId>vysper-storage</artifactId> + <groupId>org.apache.vysper</groupId> + <version>0.8-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.vysper.storage</groupId> + <artifactId>vysper-jcr</artifactId> + <name>Apache Vysper JCR Storage Bindung (Jackrabbit)</name> + <version>0.8-SNAPSHOT</version> + + + <dependencies> + <dependency> + <groupId>org.apache.vysper</groupId> + <artifactId>spec-compliance</artifactId> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>org.apache.vysper</groupId> + <artifactId>vysper-core</artifactId> + </dependency> + + <dependency> + <groupId>javax.jcr</groupId> + <artifactId>jcr</artifactId> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>org.apache.jackrabbit</groupId> + <artifactId>jackrabbit-core</artifactId> + <optional>true</optional> + </dependency> + + + <!-- Runtime dependencies --> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <scope>runtime</scope> + </dependency> + + <!-- Test dependencies --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + </dependencies> +</project> http://git-wip-us.apache.org/repos/asf/mina-vysper/blob/3515de67/server/storage/pom.xml ---------------------------------------------------------------------- diff --git a/server/storage/pom.xml b/server/storage/pom.xml new file mode 100644 index 0000000..a49fc36 --- /dev/null +++ b/server/storage/pom.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF 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/maven-v4_0_0.xsd"> + <parent> + <artifactId>vysper-server</artifactId> + <groupId>org.apache.vysper</groupId> + <version>0.8-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.vysper</groupId> + <artifactId>vysper-storage</artifactId> + <name>Apache Vysper Storage Bindings</name> + <version>0.8-SNAPSHOT</version> + <packaging>pom</packaging> + + <modules> + <module>jcr</module> + </modules> + + <profiles> + </profiles> + +</project>
