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

|

|
||||||
|
|
||||||
## 知乎
|
## 知乎
|
||||||
|
|
||||||
请关注我们的知乎:https://www.zhihu.com/people/huyuchengus
|
请关注我们的知乎:https://www.zhihu.com/people/huyuchengus
|
||||||
|
|
||||||
## 快速导航
|
## 快速导航
|
||||||
|
|
||||||
在下面的表格中,我们列出了一些比较有用的 CWIKIUS 相关软件开发使用教程的导航,欢迎访问下面的链接获得更多的内容和参与讨论
|
在下面的表格中,我们列出了一些比较有用的 CWIKIUS 相关软件开发使用教程的导航,欢迎访问下面的链接获得更多的内容和参与讨论
|
||||||
|
|
||||||
| 网站名称 | URL | NOTE |
|
| 网站名称 | URL | NOTE |
|
||||||
|----------------|--------------------------------------------------------|----------------------------|
|
|----------------|--------------------------------------------------------|----------------------------|
|
||||||
| OSSEZ 社区 | [www.ossez.com](https://www.ossez.com/) | 开放社区,欢迎注册参与讨论 |
|
| OSSEZ 社区 | [www.ossez.com](https://www.ossez.com/) | 开放社区,欢迎注册参与讨论 |
|
||||||
| WIKI 维基 | [www.cwiki.us](https://www.cwiki.us/) | 使用 Confluence 部署的 WIKI 知识库 |
|
| WIKI 维基 | [www.cwiki.us](https://www.cwiki.us/) | 使用 Confluence 部署的 WIKI 知识库 |
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.usvisatrack</groupId>
|
<groupId>com.ossez</groupId>
|
||||||
<artifactId>usvisatrack-main</artifactId>
|
<artifactId>framework-cli</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
</parent>
|
</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>
|
<description>usvisatrack core code and view files to render HTML.</description>
|
||||||
|
|
||||||
<properties>
|
<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">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>com.usvisatrack</groupId>
|
<groupId>com.ossez</groupId>
|
||||||
<artifactId>usvisatrack-main</artifactId>
|
<artifactId>framework-cli</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
||||||
<name>USVisaTrack Main</name>
|
<name>Framework-Cli</name>
|
||||||
<description>The module that constitutes the main USVisaTrack data process system</description>
|
<description>The module that constitutes the main Framework-Cli ad demo of how we process Java Cli</description>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
@ -32,9 +32,9 @@
|
|||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:git://github.com/ntc/usvisatrack.git</connection>
|
<connection>scm:git:git://src.ossez.com/honeymoose/Framework-Cli.git</connection>
|
||||||
<developerConnection>scm:git:ssh://git@github.com/ntc/usvisatrack.git</developerConnection>
|
<developerConnection>scm:git:ssh://git@gsrc.ossez.com/honeymoose/Framework-Cli.git</developerConnection>
|
||||||
<url>https://github.com/ntc/usvisatrack</url>
|
<url>https://src.ossez.com/honeymoose/Framework-Cli</url>
|
||||||
<tag>HEAD</tag>
|
<tag>HEAD</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
<system>JIRA</system>
|
<system>JIRA</system>
|
||||||
<url>http://bug.ossez.com/projects/USVisaTrack</url>
|
<url>https://bug.ossez.com/projects/USVISATRAC</url>
|
||||||
</issueManagement>
|
</issueManagement>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
404
services/pom.xml
404
services/pom.xml
@ -1,244 +1,244 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<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/maven-v4_0_0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.usvisatrack</groupId>
|
<groupId>com.ossez</groupId>
|
||||||
<artifactId>usvisatrack-main</artifactId>
|
<artifactId>framework-cli</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>usvisatrack-services</artifactId>
|
<artifactId>framework-cli-services</artifactId>
|
||||||
|
|
||||||
<name>usvisatrack services</name>
|
<name>Framework-Cli-Services</name>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<url>http://www.upcex.com</url>
|
<url>http://www.upcex.com</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
||||||
<!-- Generic properties -->
|
<!-- Generic properties -->
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
||||||
<!-- Java EE / Java SE dependencies -->
|
<!-- Java EE / Java SE dependencies -->
|
||||||
<jsp.version>2.2</jsp.version>
|
<jsp.version>2.2</jsp.version>
|
||||||
<jstl.version>1.2</jstl.version>
|
<jstl.version>1.2</jstl.version>
|
||||||
<tomcat.servlet.version>7.0.30</tomcat.servlet.version>
|
<tomcat.servlet.version>7.0.30</tomcat.servlet.version>
|
||||||
<jaxb-impl.version>2.2.7</jaxb-impl.version>
|
<jaxb-impl.version>2.2.7</jaxb-impl.version>
|
||||||
|
|
||||||
<!-- Hibernate / JPA -->
|
<!-- Hibernate / JPA -->
|
||||||
<hibernate.version>4.3.5.Final</hibernate.version>
|
<hibernate.version>4.3.5.Final</hibernate.version>
|
||||||
|
|
||||||
<!-- Bean validation -->
|
<!-- Bean validation -->
|
||||||
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version>
|
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version>
|
||||||
|
|
||||||
<!-- Database access -->
|
<!-- Database access -->
|
||||||
<tomcat-jdbc.version>7.0.42</tomcat-jdbc.version>
|
<tomcat-jdbc.version>7.0.42</tomcat-jdbc.version>
|
||||||
<ehcache.version>2.6.8</ehcache.version>
|
<ehcache.version>2.6.8</ehcache.version>
|
||||||
<hsqldb.version>2.3.2</hsqldb.version>
|
<hsqldb.version>2.3.2</hsqldb.version>
|
||||||
|
|
||||||
<!-- AOP -->
|
<!-- AOP -->
|
||||||
<aspectj.version>1.7.4</aspectj.version>
|
<aspectj.version>1.7.4</aspectj.version>
|
||||||
|
|
||||||
<!-- Web dependencies -->
|
<!-- Web dependencies -->
|
||||||
<webjars-bootstrap.version>2.3.0</webjars-bootstrap.version>
|
<webjars-bootstrap.version>2.3.0</webjars-bootstrap.version>
|
||||||
<webjars-jquery-ui.version>1.10.3</webjars-jquery-ui.version>
|
<webjars-jquery-ui.version>1.10.3</webjars-jquery-ui.version>
|
||||||
<webjars-jquery.version>2.0.3-1</webjars-jquery.version>
|
<webjars-jquery.version>2.0.3-1</webjars-jquery.version>
|
||||||
<dandelion.datatables.version>0.9.3</dandelion.datatables.version>
|
<dandelion.datatables.version>0.9.3</dandelion.datatables.version>
|
||||||
|
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.usvisatrack</groupId>
|
<groupId>com.ossez</groupId>
|
||||||
<artifactId>usvisatrack-core</artifactId>
|
<artifactId>framework-cli-core</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- GOOGLE UTILITY -->
|
<!-- GOOGLE UTILITY -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
<artifactId>gson</artifactId>
|
<artifactId>gson</artifactId>
|
||||||
<version>2.8.0</version>
|
<version>2.8.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- /GOOGLE UTILITY -->
|
<!-- /GOOGLE UTILITY -->
|
||||||
|
|
||||||
<!-- APACHE COMMONS -->
|
<!-- APACHE COMMONS -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-cli</groupId>
|
<groupId>commons-cli</groupId>
|
||||||
<artifactId>commons-cli</artifactId>
|
<artifactId>commons-cli</artifactId>
|
||||||
<version>1.4</version>
|
<version>1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- used by Spring MVC Test framework -->
|
<!-- used by Spring MVC Test framework -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hamcrest</groupId>
|
<groupId>org.hamcrest</groupId>
|
||||||
<artifactId>hamcrest-library</artifactId>
|
<artifactId>hamcrest-library</artifactId>
|
||||||
<version>1.3</version>
|
<version>1.3</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.aspectj</groupId>
|
<groupId>org.aspectj</groupId>
|
||||||
<artifactId>aspectjrt</artifactId>
|
<artifactId>aspectjrt</artifactId>
|
||||||
<version>${aspectj.version}</version>
|
<version>${aspectj.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.aspectj</groupId>
|
<groupId>org.aspectj</groupId>
|
||||||
<artifactId>aspectjweaver</artifactId>
|
<artifactId>aspectjweaver</artifactId>
|
||||||
<version>${aspectj.version}</version>
|
<version>${aspectj.version}</version>
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- Dandelion -->
|
<!-- Dandelion -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.dandelion</groupId>
|
<groupId>com.github.dandelion</groupId>
|
||||||
<artifactId>datatables-jsp</artifactId>
|
<artifactId>datatables-jsp</artifactId>
|
||||||
<version>${dandelion.datatables.version}</version>
|
<version>${dandelion.datatables.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.dandelion</groupId>
|
<groupId>com.github.dandelion</groupId>
|
||||||
<artifactId>datatables-export-itext</artifactId>
|
<artifactId>datatables-export-itext</artifactId>
|
||||||
<version>${dandelion.datatables.version}</version>
|
<version>${dandelion.datatables.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.dandelion</groupId>
|
<groupId>com.github.dandelion</groupId>
|
||||||
<artifactId>datatables-servlet2</artifactId>
|
<artifactId>datatables-servlet2</artifactId>
|
||||||
<version>${dandelion.datatables.version}</version>
|
<version>${dandelion.datatables.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.geronimo.specs</groupId>
|
<groupId>org.apache.geronimo.specs</groupId>
|
||||||
<artifactId>geronimo-activation_1.1_spec</artifactId>
|
<artifactId>geronimo-activation_1.1_spec</artifactId>
|
||||||
<version>1.1</version>
|
<version>1.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.ws.commons.schema</groupId>
|
<groupId>org.apache.ws.commons.schema</groupId>
|
||||||
<artifactId>XmlSchema</artifactId>
|
<artifactId>XmlSchema</artifactId>
|
||||||
<version>1.4.7</version>
|
<version>1.4.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.shiro</groupId>
|
<groupId>org.apache.shiro</groupId>
|
||||||
<artifactId>shiro-core</artifactId>
|
<artifactId>shiro-core</artifactId>
|
||||||
<version>1.2.3</version>
|
<version>1.2.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.shiro</groupId>
|
<groupId>org.apache.shiro</groupId>
|
||||||
<artifactId>shiro-web</artifactId>
|
<artifactId>shiro-web</artifactId>
|
||||||
<version>1.2.3</version>
|
<version>1.2.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- SOCIAL MEDIA -->
|
<!-- SOCIAL MEDIA -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.twitter4j</groupId>
|
<groupId>org.twitter4j</groupId>
|
||||||
<artifactId>twitter4j-core</artifactId>
|
<artifactId>twitter4j-core</artifactId>
|
||||||
<version>4.0.6</version>
|
<version>4.0.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- RSS -->
|
<!-- RSS -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.rometools</groupId>
|
<groupId>com.rometools</groupId>
|
||||||
<artifactId>rome</artifactId>
|
<artifactId>rome</artifactId>
|
||||||
<version>1.8.0</version>
|
<version>1.8.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>jaxen</groupId>
|
<groupId>jaxen</groupId>
|
||||||
<artifactId>jaxen</artifactId>
|
<artifactId>jaxen</artifactId>
|
||||||
<version>1.1.6</version>
|
<version>1.1.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
<!-- Maven plugin versions are mentioned in order to guarantee the build reproducibility in the long term -->
|
<!-- Maven plugin versions are mentioned in order to guarantee the build reproducibility in the long term -->
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>install</defaultGoal>
|
<defaultGoal>install</defaultGoal>
|
||||||
<testResources>
|
<testResources>
|
||||||
<testResource>
|
<testResource>
|
||||||
<!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class (see example with ValidatorTests) -->
|
<!-- declared explicitly so Spring config files can be placed next to their corresponding JUnit test class (see example with ValidatorTests) -->
|
||||||
<directory>${project.basedir}/src/test/java</directory>
|
<directory>${project.basedir}/src/test/java</directory>
|
||||||
</testResource>
|
</testResource>
|
||||||
<testResource>
|
<testResource>
|
||||||
<directory>${project.basedir}/src/test/resources</directory>
|
<directory>${project.basedir}/src/test/resources</directory>
|
||||||
</testResource>
|
</testResource>
|
||||||
</testResources>
|
</testResources>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<compilerArguments>
|
<compilerArguments>
|
||||||
<Xlint />
|
<Xlint/>
|
||||||
</compilerArguments>
|
</compilerArguments>
|
||||||
<verbose>true</verbose>
|
<verbose>true</verbose>
|
||||||
<source>${java.version}</source>
|
<source>${java.version}</source>
|
||||||
<target>${java.version}</target>
|
<target>${java.version}</target>
|
||||||
<showWarnings>true</showWarnings>
|
<showWarnings>true</showWarnings>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
<mainClass>com.usvisatrack.services.common.Main</mainClass>
|
<mainClass>com.usvisatrack.services.common.Main</mainClass>
|
||||||
<addClasspath>true</addClasspath>
|
<addClasspath>true</addClasspath>
|
||||||
<classpathPrefix>lib/</classpathPrefix>
|
<classpathPrefix>lib/</classpathPrefix>
|
||||||
</manifest>
|
</manifest>
|
||||||
</archive>
|
</archive>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase> <!-- bind to the packaging phase -->
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
||||||
<goals>
|
<goals>
|
||||||
<goal>single</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<descriptor>src/assembly/zipAssembly.xml</descriptor>
|
<descriptor>src/assembly/zipAssembly.xml</descriptor>
|
||||||
<finalName>services</finalName>
|
<finalName>services</finalName>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
<mainClass>com.usvisatrack.services.common.Main</mainClass>
|
<mainClass>com.usvisatrack.services.common.Main</mainClass>
|
||||||
</manifest>
|
</manifest>
|
||||||
<manifestEntries>
|
<manifestEntries>
|
||||||
<Class-Path>./</Class-Path>
|
<Class-Path>./</Class-Path>
|
||||||
</manifestEntries>
|
</manifestEntries>
|
||||||
</archive>
|
</archive>
|
||||||
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<description>usvisatrack-services 项目为 usvisatrack 项目的子项目,主要用于运行在后台,对系统中需要更新的数据进行全网搜索。</description>
|
<description>usvisatrack-services 项目为 usvisatrack 项目的子项目,主要用于运行在后台,对系统中需要更新的数据进行全网搜索。</description>
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
<system>JIRA</system>
|
<system>JIRA</system>
|
||||||
<url>http://bug.ossez.com/projects/UPCEX/summary</url>
|
<url>http://bug.ossez.com/projects/UPCEX/summary</url>
|
||||||
</issueManagement>
|
</issueManagement>
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user