Repository: polygene-java Updated Branches: refs/heads/develop a36086b60 -> dd97e30f7
Forgot some files. Signed-off-by: niclas <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/dd97e30f Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/dd97e30f Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/dd97e30f Branch: refs/heads/develop Commit: dd97e30f796a3b02a6df0f57a45d4f64e591efe6 Parents: a36086b Author: niclas <[email protected]> Authored: Sat Apr 15 19:03:23 2017 +0800 Committer: niclas <[email protected]> Committed: Sat Apr 15 19:03:23 2017 +0800 ---------------------------------------------------------------------- libraries/sql-generator/NOTICE | 25 +++++++++++++++++++ libraries/sql-generator/build.gradle | 34 ++++++++++++++++++++++++++ libraries/sql-generator/dev-status.xml | 38 +++++++++++++++++++++++++++++ 3 files changed, 97 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/dd97e30f/libraries/sql-generator/NOTICE ---------------------------------------------------------------------- diff --git a/libraries/sql-generator/NOTICE b/libraries/sql-generator/NOTICE new file mode 100644 index 0000000..ae00454 --- /dev/null +++ b/libraries/sql-generator/NOTICE @@ -0,0 +1,25 @@ + +This subproject contains software from the slf4j project, +see https://github.com/qos-ch/slf4j, under the MIT License + + Copyright (c) 2004-2017 QOS.ch + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. http://git-wip-us.apache.org/repos/asf/polygene-java/blob/dd97e30f/libraries/sql-generator/build.gradle ---------------------------------------------------------------------- diff --git a/libraries/sql-generator/build.gradle b/libraries/sql-generator/build.gradle new file mode 100644 index 0000000..31d0d88 --- /dev/null +++ b/libraries/sql-generator/build.gradle @@ -0,0 +1,34 @@ +/* + * 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. + * + * + */ + +apply plugin: 'polygene-library' + +description = "Apache Polygene⢠SQL Library provides SQL support." + +jar { manifest { name = "Apache Polygene⢠Library - SQL" } } + +dependencies { + api libraries.slf4j_api + + testRuntimeOnly libraries.logback + testRuntimeOnly libraries.derby + testRuntimeOnly libraries.mysql_connector + testRuntimeOnly libraries.postgres +} http://git-wip-us.apache.org/repos/asf/polygene-java/blob/dd97e30f/libraries/sql-generator/dev-status.xml ---------------------------------------------------------------------- diff --git a/libraries/sql-generator/dev-status.xml b/libraries/sql-generator/dev-status.xml new file mode 100644 index 0000000..f279e24 --- /dev/null +++ b/libraries/sql-generator/dev-status.xml @@ -0,0 +1,38 @@ +<?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. + ~ + ~ + --> +<module xmlns="http://polygene.apache.org/schemas/2008/dev-status/1" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://polygene.apache.org/schemas/2008/dev-status/1 + http://polygene.apache.org/schemas/2008/dev-status/1/dev-status.xsd"> + <status> + <!--none,early,beta,stable,mature--> + <codebase>stable</codebase> + + <!-- none, brief, good, complete --> + <documentation>brief</documentation> + + <!-- none, some, good, complete --> + <unittests>good</unittests> + </status> + <licenses> + <license>ALv2</license> + </licenses> +</module>
