You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2017/06/19 07:24:05 UTC

tomee git commit: missing DataSourcePojo - thanks Svetlin again ;)

Repository: tomee
Updated Branches:
  refs/heads/master ea6127f73 -> f2870ca2e


missing DataSourcePojo - thanks Svetlin again ;)


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/f2870ca2
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/f2870ca2
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/f2870ca2

Branch: refs/heads/master
Commit: f2870ca2e9e94692a4df30375e12450762a38abc
Parents: ea6127f
Author: rmannibucau <rm...@apache.org>
Authored: Mon Jun 19 09:24:00 2017 +0200
Committer: rmannibucau <rm...@apache.org>
Committed: Mon Jun 19 09:24:00 2017 +0200

----------------------------------------------------------------------
 .../datasource/definition/DataSourcePojo.java   | 29 ++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/f2870ca2/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/datasource/definition/DataSourcePojo.java
----------------------------------------------------------------------
diff --git a/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/datasource/definition/DataSourcePojo.java b/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/datasource/definition/DataSourcePojo.java
new file mode 100644
index 0000000..1617789
--- /dev/null
+++ b/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/datasource/definition/DataSourcePojo.java
@@ -0,0 +1,29 @@
+/*
+ * 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.
+ */
+
+package org.apache.openejb.arquillian.tests.datasource.definition;
+
+import javax.annotation.sql.DataSourceDefinition;
+
+@DataSourceDefinition(name = "jdbc/pojodb",
+        className = "org.hsqldb.jdbcDriver",
+        url = "jdbc:hsqldb:mem:pojo",
+        user = "sa",
+        password = "sa"
+)
+public class DataSourcePojo {
+}