-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
64 lines (64 loc) · 2.31 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
<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>
<parent>
<groupId>com.rajendarreddyj</groupId>
<artifactId>development-pom</artifactId>
<version>1.0</version>
</parent>
<artifactId>development-java</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Development Projects</name>
<description>Java Development Projects</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<!-- add GitHub rajendarreddyj maven-repo to repositories -->
<repositories>
<repository>
<id>github-maven-repo</id>
<url>https://github.com/rajendarreddyj/maven-repo/raw/master/</url>
</repository>
</repositories>
<modules>
<module>algorithms-projects</module>
<module>codejam-projects</module>
<module>java-projects</module>
</modules>
<organization>
<url>https://rajendarreddyj.github.io/</url>
<name>rajendarreddyj</name>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>https://raw.githubusercontent.com/rajendarreddyj/development-java/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<email>[email protected]</email>
<name>Rajendarreddy Jagapathi</name>
<url>https://github.com/rajendarreddyj</url>
<id>rajendarreddyj</id>
</developer>
</developers>
<scm>
<url>https://github.com/rajendarreddyj/development-java.git</url>
<developerConnection>scm:git:[email protected]:rajendarreddyj/development-java.git</developerConnection>
<tag>HEAD</tag>
<connection>scm:git:git://github.com/rajendarreddyj/development-java.git</connection>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/rajendarreddyj/development-java/issues</url>
</issueManagement>
<ciManagement>
<url>https://travis-ci.org/rajendarreddyj/development-java</url>
<system>Travis</system>
</ciManagement>
</project>