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> |
| 5 | <artifactId>WebAppCal</artifactId> |
| 6 | <packaging>war</packaging> |
Ravi | b19ef62 | 2021-01-08 09:42:43 +0530 | [diff] [blame^] | 7 | <version>0.0.1</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 | eefec18 | 2020-08-01 11:04:55 +0530 | [diff] [blame] | 27 | <url>http://52.204.135.48:8081/nexus/content/repositories/releases</url> |
ravi2krishna | 76a4b38 | 2020-05-03 10:38:08 +0530 | [diff] [blame] | 28 | </repository> |
| 29 | </distributionManagement> |
devops | ca43996 | 2018-04-08 15:30:23 +0530 | [diff] [blame] | 30 | </project> |