Repository: incubator-tamaya-sandbox Updated Branches: refs/heads/master e5a84e31d -> 041f59985
Added root pom Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/commit/eaa87887 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/eaa87887 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/eaa87887 Branch: refs/heads/master Commit: eaa878873a2c59a7d0581037a94126dca0ecaed1 Parents: 6392c95 Author: anatole <[email protected]> Authored: Fri Sep 16 15:33:33 2016 +0200 Committer: anatole <[email protected]> Committed: Fri Sep 16 15:33:33 2016 +0200 ---------------------------------------------------------------------- pom.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/eaa87887/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4d6fc16 --- /dev/null +++ b/pom.xml @@ -0,0 +1,44 @@ +<!-- +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 current 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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.tamaya</groupId> + <artifactId>tamaya-all</artifactId> + <version>0.3-incubating-SNAPSHOT</version> + </parent> + + <artifactId>tamaya-sandbox</artifactId> + <groupId>org.apache.tamaya.ext</groupId> + <name>Apache Tamaya Extension Modules - Expermimental Sandbox Modules</name> + <description>This project contains the several extensions that can be used with Tamaya, but that where not yet ready for production use or still under heavy discussion.</description> + <packaging>pom</packaging> + + <modules> + <module>apache-commons</module> + <module>jodatime</module> + <module>metamodel-simple</module> + <module>metamodel-staged</module> + <module>remote</module> + <module>sysprops</module> + <module>ui</module> + </modules> + +</project>
