-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
83 lines (75 loc) · 2.77 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?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" 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>com.edurekademo.tutorial</groupId>
<artifactId>demoRepo</artifactId>
<version>1.1.1-SNAPSHOT</version><!--test-->
<packaging>pom</packaging>
<name>Edureka Project 2 </name>
<url>https://github.com/kigrads/demoRepo</url>
<properties>
<build.number>SNAPSHOT</build.number>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<easyb.version>1.4</easyb.version>
<cobertura.version>2.6</cobertura.version>
<!-- A workaround for a bug in PMD -->
<sourceJdk>1.8</sourceJdk>
<targetJdk>1.8</targetJdk>
<github.account>kigrads</github.account>
<thucydides.version>0.9.268</thucydides.version>
<jelastic.context>demoRepo</jelastic.context>
</properties>
<distributionManagement>
<snapshotRepository>
<id>${env.ART_ID}</id>
<name>${env.ART_NAME}</name>
<url>${env.ART_URL}</url>
</snapshotRepository>
<repository>
<id>${env.REL_ART_ID}</id>
<name>${env.REL_ART_NAME}</name>
<url>${env.REL_ART_URL}</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:[email protected]:${github.account}/demoRepo.git</connection>
<developerConnection>scm:git:[email protected]:${github.account}/demoRepo.git</developerConnection>
<url>scm:git:[email protected]:${github.account}/game-of-life.git</url>
<!-- <tag>1.0.5</tag> -->
<tag>HEAD</tag>
</scm>
<pluginRepositories>
<pluginRepository>
<id>vaadin-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>apache.snapshots</id>
<name>Apache Snapshots</name>
<url>http://repository.apache.org/content/groups/snapshots-group/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>apache.public</id>
<name>Apache public</name>
<url>http://repository.apache.org/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>