-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
118 lines (113 loc) · 4.01 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?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>org.b2oplus.omage</groupId>
<artifactId>omage</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<url>www.b2oplus.org</url>
<name>Omage - A Image Repository Application</name>
<description>
Omage is a standalone image repository application
that serves images over web using RESTful way
</description>
<organization>
<name>B2OPlus</name>
<url>http://b2oplus.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>https://github.com/B2OPlus/omage</url>
<connection>scm:[email protected]:B2OPlus/omage.git</connection>
<developerConnection>scm:[email protected]:B2OPlus/omage.git</developerConnection>
</scm>
<developers>
<developer>
<id>abuabdul</id>
<name>Abubacker Siddik A</name>
<email>[email protected]</email>
<url>www.abuabdul.com</url>
<roles>
<role>Architect - Omage Application</role>
<role>Lead Developer</role>
</roles>
</developer>
</developers>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2/</url>
</repository>
</repositories>
<profiles>
<profile>
<id>OmageWeb</id>
<modules>
<module>omage-web</module>
<module>omage-api</module>
</modules>
</profile>
<profile><!--may not be needed-->
<id>OmageDBDeploy</id>
<modules>
<module>omage-db</module>
</modules>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven-surefire-plugin.version>2.19</maven-surefire-plugin.version>
<commons.lang.version>3.5</commons.lang.version>
<testng.version>6.10</testng.version>
<mockito.version>2.7.5</mockito.version> <!--add dependency-->
</properties>
<dependencies>
<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>2.5.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>omage</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>$[java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>