[openmeetings] 01/11: no jira: project is partially converted to use java11 modules

2023-09-24 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch java11-modules
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit 8ad3756141463e04fb72550791fd9b75bdfd5b50
Author: Maxim Solodovnik 
AuthorDate: Tue Feb 18 00:32:32 2020 +0700

no jira: project is partially converted to use java11 modules
---
 openmeetings-core/src/main/java/module-info.java   | 40 +
 openmeetings-db/src/main/java/module-info.java | 66 ++
 .../apache/openmeetings/db/dao/label/LabelDao.java |  4 +-
 openmeetings-util/src/main/java/module-info.java   | 45 +++
 4 files changed, 153 insertions(+), 2 deletions(-)

diff --git a/openmeetings-core/src/main/java/module-info.java 
b/openmeetings-core/src/main/java/module-info.java
new file mode 100644
index 0..833be8717
--- /dev/null
+++ b/openmeetings-core/src/main/java/module-info.java
@@ -0,0 +1,40 @@
+/*
+ * 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 apache.openmeetings.core {
+   requires transitive apache.openmeetings.db;
+
+   requires transitive org.apache.commons.io;
+
+   requires transitive spring.context;
+
+   requires kurento.client;
+   requires kurento.commons;
+   requires kurento.jsonrpc.client;
+   requires java.activation;
+   requires com.google.gson;
+   requires java.mail;
+   requires api.all;
+   requires org.apache.tika.parsers;
+   requires java.xml;
+   requires xstream;
+
+   requires jodconverter.core;
+   requires jodconverter.local;
+}
diff --git a/openmeetings-db/src/main/java/module-info.java 
b/openmeetings-db/src/main/java/module-info.java
new file mode 100644
index 0..2d01a8c92
--- /dev/null
+++ b/openmeetings-db/src/main/java/module-info.java
@@ -0,0 +1,66 @@
+/*
+ * 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 apache.openmeetings.db {
+   exports org.apache.openmeetings;
+   exports org.apache.openmeetings.db.dao;
+   exports org.apache.openmeetings.db.dao.basic;
+   exports org.apache.openmeetings.db.dao.calendar;
+   exports org.apache.openmeetings.db.dao.file;
+   exports org.apache.openmeetings.db.dao.label;
+   exports org.apache.openmeetings.db.dao.log;
+   exports org.apache.openmeetings.db.dao.record;
+   exports org.apache.openmeetings.db.dao.room;
+   exports org.apache.openmeetings.db.dao.server;
+   exports org.apache.openmeetings.db.dao.user;
+   exports org.apache.openmeetings.db.dto.basic;
+   exports org.apache.openmeetings.db.dto.calendar;
+   exports org.apache.openmeetings.db.dto.file;
+   exports org.apache.openmeetings.db.dto.record;
+   exports org.apache.openmeetings.db.dto.room;
+   exports org.apache.openmeetings.db.dto.user;
+   exports org.apache.openmeetings.db.entity;
+   exports org.apache.openmeetings.db.entity.basic;
+   exports org.apache.openmeetings.db.entity.calendar;
+   exports org.apache.openmeetings.db.entity.file;
+   exports org.apache.openmeetings.db.entity.label;
+   exports org.apache.openmeetings.db.entity.log;
+   exports org.apache.openmeetings.db.entity.record;
+   exports org.apache.openmeetings.db.entity.room;
+   exports org.apache.openmeetings.db.entity.server;
+   exports org.apache.openmeetings.db.entity.user;
+   exports org.apache.openmeetings.db.manager;

[openmeetings] 01/11: no jira: project is partially converted to use java11 modules

2022-07-19 Thread solomax
This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch java11-modules
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit eb942546dc2087b51fcdbad2dd63f27c7cb42db7
Author: Maxim Solodovnik 
AuthorDate: Tue Feb 18 00:32:32 2020 +0700

no jira: project is partially converted to use java11 modules
---
 openmeetings-core/src/main/java/module-info.java   | 40 +
 openmeetings-db/src/main/java/module-info.java | 66 ++
 .../apache/openmeetings/db/dao/label/LabelDao.java |  4 +-
 openmeetings-util/src/main/java/module-info.java   | 45 +++
 4 files changed, 153 insertions(+), 2 deletions(-)

diff --git a/openmeetings-core/src/main/java/module-info.java 
b/openmeetings-core/src/main/java/module-info.java
new file mode 100644
index 0..833be8717
--- /dev/null
+++ b/openmeetings-core/src/main/java/module-info.java
@@ -0,0 +1,40 @@
+/*
+ * 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 apache.openmeetings.core {
+   requires transitive apache.openmeetings.db;
+
+   requires transitive org.apache.commons.io;
+
+   requires transitive spring.context;
+
+   requires kurento.client;
+   requires kurento.commons;
+   requires kurento.jsonrpc.client;
+   requires java.activation;
+   requires com.google.gson;
+   requires java.mail;
+   requires api.all;
+   requires org.apache.tika.parsers;
+   requires java.xml;
+   requires xstream;
+
+   requires jodconverter.core;
+   requires jodconverter.local;
+}
diff --git a/openmeetings-db/src/main/java/module-info.java 
b/openmeetings-db/src/main/java/module-info.java
new file mode 100644
index 0..2d01a8c92
--- /dev/null
+++ b/openmeetings-db/src/main/java/module-info.java
@@ -0,0 +1,66 @@
+/*
+ * 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 apache.openmeetings.db {
+   exports org.apache.openmeetings;
+   exports org.apache.openmeetings.db.dao;
+   exports org.apache.openmeetings.db.dao.basic;
+   exports org.apache.openmeetings.db.dao.calendar;
+   exports org.apache.openmeetings.db.dao.file;
+   exports org.apache.openmeetings.db.dao.label;
+   exports org.apache.openmeetings.db.dao.log;
+   exports org.apache.openmeetings.db.dao.record;
+   exports org.apache.openmeetings.db.dao.room;
+   exports org.apache.openmeetings.db.dao.server;
+   exports org.apache.openmeetings.db.dao.user;
+   exports org.apache.openmeetings.db.dto.basic;
+   exports org.apache.openmeetings.db.dto.calendar;
+   exports org.apache.openmeetings.db.dto.file;
+   exports org.apache.openmeetings.db.dto.record;
+   exports org.apache.openmeetings.db.dto.room;
+   exports org.apache.openmeetings.db.dto.user;
+   exports org.apache.openmeetings.db.entity;
+   exports org.apache.openmeetings.db.entity.basic;
+   exports org.apache.openmeetings.db.entity.calendar;
+   exports org.apache.openmeetings.db.entity.file;
+   exports org.apache.openmeetings.db.entity.label;
+   exports org.apache.openmeetings.db.entity.log;
+   exports org.apache.openmeetings.db.entity.record;
+   exports org.apache.openmeetings.db.entity.room;
+   exports org.apache.openmeetings.db.entity.server;
+   exports org.apache.openmeetings.db.entity.user;
+   exports org.apache.openmeetings.db.manager;