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/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <parent >
5+ <groupId >org.jooby</groupId >
6+ <artifactId >jooby-project</artifactId >
7+ <version >1.0.4-SNAPSHOT</version >
8+ </parent >
9+ <artifactId >jooby-requery</artifactId >
10+ <name >requery module</name >
11+ <description >https://github.com/requery/requery</description >
12+
13+ <dependencies >
14+ <!-- Jooby jdbc -->
15+ <dependency >
16+ <groupId >org.jooby</groupId >
17+ <artifactId >jooby-jdbc</artifactId >
18+ </dependency >
19+
20+ <dependency >
21+ <groupId >io.requery</groupId >
22+ <artifactId >requery</artifactId >
23+ </dependency >
24+
25+ <dependency >
26+ <groupId >org.slf4j</groupId >
27+ <artifactId >jul-to-slf4j</artifactId >
28+ <version >${slf4j-api.version} </version >
29+ </dependency >
30+
31+ <dependency >
32+ <groupId >io.projectreactor</groupId >
33+ <artifactId >reactor-core</artifactId >
34+ <scope >compile</scope >
35+ </dependency >
36+
37+ <!-- Test dependencies -->
38+ <dependency >
39+ <groupId >org.jooby</groupId >
40+ <artifactId >jooby</artifactId >
41+ <version >${project.version} </version >
42+ <scope >test</scope >
43+ <classifier >tests</classifier >
44+ </dependency >
45+
46+ <dependency >
47+ <groupId >junit</groupId >
48+ <artifactId >junit</artifactId >
49+ <scope >test</scope >
50+ </dependency >
51+
52+ <dependency >
53+ <groupId >org.easymock</groupId >
54+ <artifactId >easymock</artifactId >
55+ <scope >test</scope >
56+ </dependency >
57+
58+ <dependency >
59+ <groupId >org.powermock</groupId >
60+ <artifactId >powermock-api-easymock</artifactId >
61+ <scope >test</scope >
62+ </dependency >
63+
64+ <dependency >
65+ <groupId >org.powermock</groupId >
66+ <artifactId >powermock-module-junit4</artifactId >
67+ <scope >test</scope >
68+ </dependency >
69+
70+ <dependency >
71+ <groupId >org.jacoco</groupId >
72+ <artifactId >org.jacoco.agent</artifactId >
73+ <classifier >runtime</classifier >
74+ <scope >test</scope >
75+ </dependency >
76+
77+ <dependency >
78+ <groupId >io.reactivex.rxjava2</groupId >
79+ <artifactId >rxjava</artifactId >
80+ <version >2.0.7</version >
81+ <scope >test</scope >
82+ </dependency >
83+
84+ </dependencies >
85+ </project >
0 commit comments