Compare commits
3 Commits
spring_boo
...
main
Author | SHA1 | Date | |
---|---|---|---|
cf091e10d9 | |||
0e3c050ee2 | |||
054d1e185b |
18
README.md
18
README.md
@ -1,10 +1,10 @@
|
||||
# About
|
||||
# Framework-Cli
|
||||
Framework-Cli 项目框架是从一个老的项目中拷贝出来的。
|
||||
|
||||
# Usage
|
||||
这个项目的主要目的是使用 Apache 的 Cli 工具来构建可以直接运行的 Java 项目。
|
||||
|
||||
# Downloads
|
||||
目前,这种构建方式已经不是主流了,如果想构建一个可以直接运行的 jar 的话,更多的我们使用的是 Spring Boot 来做的。
|
||||
|
||||
# Source
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/honeymoose">
|
||||
@ -13,7 +13,7 @@
|
||||
<br>提供 CWIKI.US 项目中使用的代码
|
||||
</p>
|
||||
|
||||
所有的 Java 代码使用的是 JDK 11。
|
||||
Java 代码使用的是 JDK 11。
|
||||
|
||||
你可以通过单击下面连接后访问我们网站,并且访问我们提供的最新有关 Java 的开发资料。
|
||||
|
||||
@ -28,12 +28,13 @@
|
||||
|--------|-----------------------------------------------|
|
||||
| 电子邮件 | [service@ossez.com](mailto:service@ossez.com) |
|
||||
| QQ 或微信 | 103899765 |
|
||||
| QQ 交流群 | 15186112 |
|
||||
| 社区论坛 | https://www.ossez.com/c/open-source/java/15 |
|
||||
|
||||
# 公众平台
|
||||
|
||||
我们建议您通过社区论坛来和我们进行沟通,请关注我们公众平台上的账号
|
||||
我们建议您通过社区论坛来和我们进行沟通,请关注我们公众平台上的账号。
|
||||
|
||||
扫描 QR 关注我们的微信公众号和头条号。
|
||||
|
||||
## 微信公众号
|
||||
|
||||
@ -41,11 +42,10 @@
|
||||
|
||||
## 头条号
|
||||
|
||||
我们也在头条号上创建了我们的公众号,请扫描下面的 QR 关注我们的头条号。
|
||||
|
||||

|
||||
|
||||
## 知乎
|
||||
|
||||
请关注我们的知乎:https://www.zhihu.com/people/huyuchengus
|
||||
|
||||
## 快速导航
|
||||
|
@ -5,14 +5,14 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.usvisatrack</groupId>
|
||||
<artifactId>usvisatrack-main</artifactId>
|
||||
<groupId>com.ossez</groupId>
|
||||
<artifactId>framework-cli</artifactId>
|
||||
<version>0.1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>usvisatrack-core</artifactId>
|
||||
<artifactId>framework-cli-core</artifactId>
|
||||
|
||||
<name>usvisatrack core</name>
|
||||
<name>Framework-Cli-Core</name>
|
||||
<description>usvisatrack core code and view files to render HTML.</description>
|
||||
|
||||
<properties>
|
||||
|
16
pom.xml
16
pom.xml
@ -3,8 +3,8 @@
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.usvisatrack</groupId>
|
||||
<artifactId>usvisatrack-main</artifactId>
|
||||
<groupId>com.ossez</groupId>
|
||||
<artifactId>framework-cli</artifactId>
|
||||
<version>0.1.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@ -15,8 +15,8 @@
|
||||
</parent>
|
||||
|
||||
|
||||
<name>USVisaTrack Main</name>
|
||||
<description>The module that constitutes the main USVisaTrack data process system</description>
|
||||
<name>Framework-Cli</name>
|
||||
<description>The module that constitutes the main Framework-Cli ad demo of how we process Java Cli</description>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
@ -32,9 +32,9 @@
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/ntc/usvisatrack.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/ntc/usvisatrack.git</developerConnection>
|
||||
<url>https://github.com/ntc/usvisatrack</url>
|
||||
<connection>scm:git:git://src.ossez.com/honeymoose/Framework-Cli.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@gsrc.ossez.com/honeymoose/Framework-Cli.git</developerConnection>
|
||||
<url>https://src.ossez.com/honeymoose/Framework-Cli</url>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
|
||||
<issueManagement>
|
||||
<system>JIRA</system>
|
||||
<url>http://bug.ossez.com/projects/USVisaTrack</url>
|
||||
<url>https://bug.ossez.com/projects/USVISATRAC</url>
|
||||
</issueManagement>
|
||||
|
||||
<properties>
|
||||
|
@ -4,14 +4,14 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.usvisatrack</groupId>
|
||||
<artifactId>usvisatrack-main</artifactId>
|
||||
<groupId>com.ossez</groupId>
|
||||
<artifactId>framework-cli</artifactId>
|
||||
<version>0.1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>usvisatrack-services</artifactId>
|
||||
<artifactId>framework-cli-services</artifactId>
|
||||
|
||||
<name>usvisatrack services</name>
|
||||
<name>Framework-Cli-Services</name>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<url>http://www.upcex.com</url>
|
||||
@ -55,8 +55,8 @@
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.usvisatrack</groupId>
|
||||
<artifactId>usvisatrack-core</artifactId>
|
||||
<groupId>com.ossez</groupId>
|
||||
<artifactId>framework-cli-core</artifactId>
|
||||
<version>0.1.0</version>
|
||||
</dependency>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user