springx-boot-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot-gui</artifactId>
<version>0.0.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot</artifactId>
<version>0.0.7</version>
</parent>
<artifactId>springx-boot-gui</artifactId>
<name>springx-boot-gui</name>
<description>springx-boot-gui</description>
<url>https://github.com/kancyframework/springx-boot/springx-boot-gui</url>
<licenses>
<license>
<name>GNU General Public License</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<!--输入在sonatype创建的账户和联系邮箱 -->
<name>kancy</name>
<email>793272861@qq.com</email>
<organization>kancy</organization>
<organizationUrl>https://www.cnblogs.com/kancy</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/kancyframework/springx-boot.git</url>
</scm>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot-log</artifactId>
</dependency>
<dependency>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot-utils</artifactId>
</dependency>
<!-- 图片工具-->
<dependency>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot-image</artifactId>
</dependency>
<!-- miglayout -->
<dependency>
<groupId>com.github.kancyframework</groupId>
<artifactId>springx-boot-gui-miglayout</artifactId>
<scope>provided</scope>
</dependency>
<!-- 日期 -->
<dependency>
<groupId>io.loli</groupId>
<artifactId>datepicker4j</artifactId>
<version>0.0.5</version>
</dependency>
<!-- 语法高亮 -->
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>rsyntaxtextarea</artifactId>
<version>3.4.0</version>
<scope>provided</scope>
</dependency>
<!-- 皮肤包 -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf-intellij-themes</artifactId>
<version>3.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jtattoo</groupId>
<artifactId>JTattoo</artifactId>
<version>1.6.13</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.arnabk</groupId>
<artifactId>pgslookandfeel</artifactId>
<version>1.1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.weblookandfeel</groupId>
<artifactId>weblaf-ui</artifactId>
<version>1.2.12</version>
<scope>provided</scope>
</dependency>
<!--<dependency>
<groupId>org.jvnet.substance</groupId>
<artifactId>substance</artifactId>
<version>4.3</version>
<scope>provided</scope>
</dependency>-->
<!--<dependency>
<groupId>org.jb2011</groupId>
<artifactId>beautyeye_lnf</artifactId>
<version>3.7</version>
<scope>provided</scope>
</dependency>-->
<dependency>
<groupId>com.seaglasslookandfeel</groupId>
<artifactId>seaglasslookandfeel</artifactId>
<version>0.2.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencyManagement>
</dependencyManagement>
<build>
<plugins>
<!-- 源码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<!--部署-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<!-- GPG 打包插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<!--将组件部署到OSSRH并将其发布到Central Repository-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>