forked from jugchennai/UrbanTravellers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
75 lines (64 loc) · 2.64 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
<?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>in.jugchennai</groupId>
<artifactId>UrbanTravellers</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>UrbanTravellers</name>
<description>This is a Proof of Concept project to illustrates some of the JSRs listed for JEE 7 Release.
The JSRs used by this project are as follows:
Java Persistence API 2.1 (JSR 338)
JavaServer Faces 2.2 (JSR 344)
Batch Applications for the Java Platform 1.0 (JSR 352)
Java API for JSON Processing 1.0 (JSR 353)
Java API for WebSocket 1.0 (JSR 356)
The application is a game derived from a famous dice game called Snake and Ladder.
</description>
<modules>
<module>UrbanTravellers-Web</module>
<module>UrbanTravellers-JPA</module>
<module>UrbanTravellers-Batch</module>
</modules>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments/>
</license>
</licenses>
<organization>
<name>JUGChennai</name>
<url>http://jugchennai.in</url>
</organization>
<scm>
<connection>scm:git:[email protected]:jugchennai/UrbanTravellers.git</connection>
<developerConnection>scm:git:[email protected]:jugchennai/UrbanTravellers.git</developerConnection>
<url>https://github.com/jugchennai/UrbanTravellers</url>
</scm>
<reporting>
<outputDirectory>${project.build.directory}/site</outputDirectory>
</reporting>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jugchennai/UrbanTravellers/issues</url>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>