devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.web.cal</groupId> |
Ravi | 91e1839 | 2022-01-17 14:44:14 +0530 | [diff] [blame] | 5 | <artifactId>webapp</artifactId> |
devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 6 | <packaging>war</packaging> |
Ravi | 5c270e0 | 2022-01-18 16:43:36 +0530 | [diff] [blame] | 7 | <version>0.2</version> |
devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 8 | <name>WebAppCal Maven Webapp</name> |
| 9 | <url>http://maven.apache.org</url> |
| 10 | <dependencies> |
| 11 | <dependency> |
| 12 | <groupId>junit</groupId> |
| 13 | <artifactId>junit</artifactId> |
ravi2krishna | 4046466 | 2019-04-05 14:43:44 +0530 | [diff] [blame] | 14 | <version>4.8.2</version> |
devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 15 | <scope>test</scope> |
| 16 | </dependency> |
| 17 | <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api --> |
| 18 | <dependency> |
| 19 | <groupId>javax.servlet</groupId> |
| 20 | <artifactId>servlet-api</artifactId> |
| 21 | <version>2.5</version> |
| 22 | </dependency> |
ravi2krishna | 76a4b38 | 2020-05-03 10:38:08 +0530 | [diff] [blame] | 23 | </dependencies> |
| 24 | <distributionManagement> |
| 25 | <repository> |
| 26 | <id>releases</id> |
Ravi | 8691d26 | 2022-01-19 14:55:09 +0530 | [diff] [blame] | 27 | <!-- <url>http://52.204.135.48:8081/nexus/content/repositories/releases</url> --> |
| 28 | <url>http://binary.ibm.com/nexus/content/repositories/releases</url> |
ravi2krishna | 76a4b38 | 2020-05-03 10:38:08 +0530 | [diff] [blame] | 29 | </repository> |
| 30 | </distributionManagement> |
devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 31 | </project> |