Repository: incubator-tamaya Updated Branches: refs/heads/master 7aa2f09be -> bb8bc985c
TAMAYA-60 Started with the builder module. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/bb8bc985 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/bb8bc985 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/bb8bc985 Branch: refs/heads/master Commit: bb8bc985c0766432b27167be6684a2838e723270 Parents: 7aa2f09 Author: Oliver B. Fischer <[email protected]> Authored: Thu Jan 22 20:26:03 2015 +0100 Committer: Oliver B. Fischer <[email protected]> Committed: Thu Jan 22 20:26:03 2015 +0100 ---------------------------------------------------------------------- modules/builder/pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++ modules/pom.xml | 1 + 2 files changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/bb8bc985/modules/builder/pom.xml ---------------------------------------------------------------------- diff --git a/modules/builder/pom.xml b/modules/builder/pom.xml new file mode 100644 index 0000000..330cd97 --- /dev/null +++ b/modules/builder/pom.xml @@ -0,0 +1,46 @@ +<?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 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.ext</groupId> + <artifactId>tamaya-extensions</artifactId> + <version>0.1-incubating-SNAPSHOT</version> + </parent> + + <artifactId>tamaya-builder</artifactId> + <name>Apache Tamaya Builder</name> + + <inceptionYear>2015</inceptionYear> + + + <dependencies> + <dependency> + <groupId>org.apache.tamaya</groupId> + <artifactId>tamaya-api</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/bb8bc985/modules/pom.xml ---------------------------------------------------------------------- diff --git a/modules/pom.xml b/modules/pom.xml index cda14ad..bbe0424 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -34,6 +34,7 @@ under the License. <packaging>pom</packaging> <modules> + <module>builder</module> <module>injection</module> <module>formats</module> <module>json</module>
