打包问题
This commit is contained in:
parent
9f928d4f75
commit
b576a8931c
@ -16,6 +16,14 @@
|
|||||||
swing 模块
|
swing 模块
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- <properties>-->
|
||||||
|
<!-- <java.version>1.8</java.version>-->
|
||||||
|
<!-- <maven.compiler.source>${java.version}</maven.compiler.source>-->
|
||||||
|
<!-- <maven.compiler.target>${java.version}</maven.compiler.target>-->
|
||||||
|
<!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
|
||||||
|
<!-- </properties>-->
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<!-- flatlaf-->
|
<!-- flatlaf-->
|
||||||
@ -38,6 +46,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.formdev</groupId>
|
<groupId>com.formdev</groupId>
|
||||||
<artifactId>jide-oss</artifactId>
|
<artifactId>jide-oss</artifactId>
|
||||||
|
<version>3.7.15</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
@ -109,7 +118,6 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<!-- 设置构建的 jar 包名 -->
|
<!-- 设置构建的 jar 包名 -->
|
||||||
<finalName>${project.artifactId}</finalName>
|
<finalName>${project.artifactId}</finalName>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.lw.swing.components.table.renderer;
|
package com.lw.swing.components.table.renderer;
|
||||||
|
|
||||||
import sun.reflect.misc.ReflectUtil;
|
//import sun.reflect.misc.ReflectUtil;
|
||||||
import sun.swing.SwingUtilities2;
|
import sun.swing.SwingUtilities2;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
@ -84,7 +84,7 @@ public class WNumberEditor extends DefaultCellEditor {
|
|||||||
if (type == Object.class) {
|
if (type == Object.class) {
|
||||||
type = String.class;
|
type = String.class;
|
||||||
}
|
}
|
||||||
ReflectUtil.checkPackageAccess(type);
|
// ReflectUtil.checkPackageAccess(type);
|
||||||
SwingUtilities2.checkAccess(type.getModifiers());
|
SwingUtilities2.checkAccess(type.getModifiers());
|
||||||
constructor = type.getConstructor(argTypes);
|
constructor = type.getConstructor(argTypes);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
UI 模块,主要实现 Swing、JavaFx界面功能。
|
UI 模块,主要实现 Swing、JavaFx界面功能。
|
||||||
</description>
|
</description>
|
||||||
<modules>
|
<modules>
|
||||||
<module>dillon-ui-swing</module>
|
|
||||||
<module>dillon-ui-common</module>
|
<module>dillon-ui-common</module>
|
||||||
|
<module>dillon-ui-swing</module>
|
||||||
<module>dillon-ui-fx</module>
|
<module>dillon-ui-fx</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user