WIP JPMS multi jar build

master
Robinson 2021-12-13 09:27:06 -07:00
parent 53c6ab6a3d
commit af915ad31f
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/*
* Copyright 2021 dorkbox, llc
*
* Licensed 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 dorkbox.systemTray;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.
* This file is completely ignored by the gradle build process
*/
public
class EmptyClass {}

View File

@ -0,0 +1,24 @@
/*
* Copyright 2021 dorkbox, llc
*
* Licensed 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 dorkbox.systemTray.peer;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.
* This file is completely ignored by the gradle build process
*/
public
class EmptyClass {}

View File

@ -0,0 +1,24 @@
/*
* Copyright 2021 dorkbox, llc
*
* Licensed 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 dorkbox.systemTray.util;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.
* This file is completely ignored by the gradle build process
*/
public
class EmptyClass {}

27
src9/module-info.java Normal file
View File

@ -0,0 +1,27 @@
module dorkbox.systemtray {
exports dorkbox.systemTray;
exports dorkbox.systemTray.peer;
exports dorkbox.systemTray.util;
requires dorkbox.executor;
requires dorkbox.updates;
requires dorkbox.utilities;
requires org.slf4j;
requires com.sun.jna;
requires com.sun.jna.platform;
// when running javaFX
// requires static javafx.graphics;
// when running SWT
// 32-bit support was dropped by eclipse since 4.10 (3.108.0 is the oldest that is 32 bit)
// requires static org.eclipse.swt.gtk.linux.x86_64;
// requires static org.eclipse.swt.win32.win32.x86_64;
// requires static org.eclipse.swt.cocoa.macosx.x86_64;
requires java.desktop;
requires java.base;
requires kotlin.stdlib;
}