forked from alphazero/jredis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
123 lines (115 loc) · 3.58 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
119
120
121
122
123
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- coordination | build super pom -->
<name>JRedis [Build POM]</name>
<groupId>org.jredis</groupId>
<artifactId>jredis</artifactId>
<version>a.0-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- production units -->
<modules>
<module>core</module>
<module>examples</module>
<module>extensions</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- JDK Compliance level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<!-- surefire testrunner
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property><name>redis.host</name> <value>localhost</value></property>
<property><name>redis.port</name> <value>6379</value></property>
<property><name>redis.password</name> <value>jredis</value></property>
<property><name>redis.db.1</name> <value>13</value></property>
<property><name>redis.db.2</name> <value>10</value></property>
</systemProperties>
</configuration>
</plugin>
-->
</plugins>
</build>
<dependencyManagement>
<!-- testing only -->
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
<!-- logging -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- info -->
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>all</distribution>
<comments>Copyright 2009 (c) Joubin Houshyar - All Right Reserved</comments>
</license>
</licenses>
<developers>
<developer>
<id>alphazero</id>
<name>Joubin Houshyar</name>
<email>[email protected]</email>
<url>http://github.com/alphazero</url>
<roles>
<role>ReleaseManager</role>
<role>Designer</role>
<role>Developer</role>
</roles>
<timezone>UTC-5</timezone>
</developer>
<developer>
<id>gv0tch0</id>
<name>Nik Kolev</name>
<email>[email protected]</email>
<url>http://github.com/gv0tch0</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>UTC-5</timezone>
</developer>
</developers>
</project>