1 Star 0 Fork 0

ayou / hyl.ext.web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
ayou 提交于 2021-08-10 18:07 . 2021 -11-2
<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>
<groupId>nt.hyl</groupId>
<artifactId>ext-web</artifactId>
<version>0.0.11</version>
<name>hyl.ext.web</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<!--这部分可有可无,加上的话则直接生成可运行jar包 -->
<!--<archive> -->
<!--<manifest> -->
<!--<mainClass>${exec.mainClass}</mainClass> -->
<!--</manifest> -->
<!--</archive> -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<hyl.version>0.0.11</hyl.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<!-- <scope>provided</scope> -->
</dependency>
<dependency>
<groupId>nt.hyl</groupId>
<artifactId>base-cache</artifactId>
<version>${hyl.version}</version>
</dependency>
<dependency>
<groupId>nt.hyl</groupId>
<artifactId>base-net</artifactId>
<version>${hyl.version}</version>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<!-- <scope>provided</scope> -->
</dependency>
<!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
<!-- <dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.2</version>
</dependency>
-->
</dependencies>
</project>
Java
1
https://gitee.com/zdy-ah/hyl.ext.web.git
git@gitee.com:zdy-ah/hyl.ext.web.git
zdy-ah
hyl.ext.web
hyl.ext.web
008

搜索帮助