1 Star 0 Fork 12

小帅丶 / jenkinsSample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
小帅丶 提交于 2018-06-28 16:06 . 示例工程
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.xsshome</groupId>
<artifactId>jksample</artifactId>
<packaging>war</packaging>
<version>0.0.1</version>
<name>jksample</name>
<url>http://maven.apache.org</url>
<properties>
<!-- Servlet -->
<servlet.version>3.0.1</servlet.version>
<jsp-api.version>2.2</jsp-api.version>
<!-- jstl -->
<jstl.version>1.2</jstl.version>
<standard.version>1.1.2</standard.version>
</properties>
<dependencies>
<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp-api.version}</version>
<scope>provided</scope>
</dependency>
<!-- jstl -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>${standard.version}</version>
</dependency>
</dependencies>
<build>
<finalName>jksample</finalName>
</build>
</project>
Java
1
https://gitee.com/xshuai/jenkinsSample.git
git@gitee.com:xshuai/jenkinsSample.git
xshuai
jenkinsSample
jenkinsSample
master

搜索帮助