Repository: incubator-tamaya-sandbox Updated Branches: refs/heads/master d5e30df1f -> 4a006c740
TAMAYA-73: JSR 363 Support - https://issues.apache.org/jira/browse/TAMAYA-73 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/4a006c74 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/4a006c74 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/4a006c74 Branch: refs/heads/master Commit: 4a006c740e989d1f5c36ea9c56e02218acbb75fc Parents: d5e30df Author: Werner Keil <[email protected]> Authored: Mon Jan 30 00:16:00 2017 +0100 Committer: Werner Keil <[email protected]> Committed: Mon Jan 30 00:16:00 2017 +0100 ---------------------------------------------------------------------- pom.xml | 1 + uom/pom.xml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/4a006c74/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 123f6e9..d76e69e 100644 --- a/pom.xml +++ b/pom.xml @@ -752,6 +752,7 @@ under the License. <module>osgi</module> <module>management</module> <module>metamodel</module> + <module>uom</module> </modules> <profiles> http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/4a006c74/uom/pom.xml ---------------------------------------------------------------------- diff --git a/uom/pom.xml b/uom/pom.xml new file mode 100644 index 0000000..4acfe29 --- /dev/null +++ b/uom/pom.xml @@ -0,0 +1,19 @@ +<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-sandbox</artifactId> + <version>0.3-incubating-SNAPSHOT</version> + </parent> + <artifactId>tamaya-uom</artifactId> + <name>Apache Tamaya Modules - Units of Measurement Support</name> + <description>This modules provides a set of property converters to support + JSR 363 implementations in conjunction with Apache Tamaya.</description> + <inceptionYear>2017</inceptionYear> + + <properties> + <jsr363.version>1.0</jsr363.version> + </properties> + +</project> \ No newline at end of file
