EP / tokyotyrant-java (http://code.google.com/p/tokyotyrant-java)

Java client for Tokyo Tyrant.

Clone this repository (size: 503.6 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/EP/tokyotyrant-java/
commit 215: ab79e4e67317
parent 214: 36980b4d678d
branch: default
tags: 0.8.1
[maven-release-plugin] prepare release 0.8.1
Eung-ju PARK
11 months ago

Changed (Δ269 bytes):

raw changeset »

pom.xml (262 lines added, 262 lines removed)

Up to file-list pom.xml:

1
<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">
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>tokyotyrant</groupId>
4
  <artifactId>tokyotyrant</artifactId>
5
  <packaging>jar</packaging>
6
  <version>0.9-SNAPSHOT</version>
7
  <name>tokyotyrant</name>
8
  <description>This module implements the pure Java client which connects to the server of Tokyo Tyrant and speaks its original binary protocol.</description>
9
  <url>http://code.google.com/p/tokyotyrant-java</url>
10
11
	<scm>
12
		<connection>scm:hg:http://bitbucket.org/EP/tokyotyrant-java/</connection>
13
		<developerConnection>scm:hg:https://bitbucket.org/EP/tokyotyrant-java/</developerConnection>
14
		<url>http://www.bitbucket.org/EP/tokyotyrant-java/</url>
15
	</scm>
16
	
17
	<issueManagement>
18
		<url>http://code.google.com/p/tokyotyrant-java/issues/</url>
19
	</issueManagement>
20
	
21
	<developers>
22
		<developer>
23
			<id>eungju</id>
24
			<name>Eung-ju PARK</name>
25
		</developer>
26
	</developers>
27
	
28
	<licenses>
29
		<license>
30
			<name>Apache License 2.0</name>
31
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
32
		</license>
33
	</licenses>
34
35
	<repositories>
36
		<repository>
37
			<id>repository.jboss.org</id>
38
			<url>http://repository.jboss.org/maven2</url>
39
			<snapshots>
40
				<enabled>false</enabled>
41
			</snapshots>
42
		</repository>
43
	</repositories>
44
45
	<pluginRepositories>
46
		<pluginRepository>
47
			<id>sonatype.org</id>
48
			<name>Public Sonatype Maven Repository</name>
49
			<url>http://repository.sonatype.org/content/groups/public</url>
50
		</pluginRepository>
51
	</pluginRepositories>
52
	
53
  <dependencies>
54
	<dependency>
55
		<groupId>org.jboss.netty</groupId>
56
		<artifactId>netty</artifactId>
57
		<version>3.1.0.BETA2</version>
58
	</dependency>
59
    <dependency>
60
      <groupId>org.slf4j</groupId>
61
      <artifactId>slf4j-api</artifactId>
62
      <version>1.5.6</version>
63
    </dependency>
64
    <dependency>
65
      <groupId>org.slf4j</groupId>
66
      <artifactId>slf4j-log4j12</artifactId>
67
      <version>1.5.6</version>
68
      <scope>runtime</scope>
69
      <optional>true</optional>
70
    </dependency>
71
72
    <dependency>
73
      <groupId>org.jmock</groupId>
74
      <artifactId>jmock</artifactId>
75
      <version>2.5.1</version>
76
      <scope>test</scope>
77
    </dependency>
78
    <dependency>
79
      <groupId>org.jmock</groupId>
80
      <artifactId>jmock-legacy</artifactId>
81
      <version>2.5.1</version>
82
      <scope>test</scope>
83
    </dependency>
84
    <dependency>
85
      <groupId>org.jmock</groupId>
86
      <artifactId>jmock-junit4</artifactId>
87
      <version>2.5.1</version>
88
      <scope>test</scope>
89
    </dependency>
90
	<dependency>
91
		<groupId>org.infinitest</groupId>
92
		<artifactId>infinitest</artifactId>
93
		<version>4.0.1</version>
94
		<scope>test</scope>
95
	</dependency>
96
97
  </dependencies>
98
99
	<build>
100
		<plugins>
101
			<plugin>
102
				<artifactId>maven-compiler-plugin</artifactId>
103
				<configuration>
104
					<debug>true</debug>
105
					<optimize>true</optimize>
106
					<showDeprecations>true</showDeprecations>
107
					<source>${maven.compiler.source}</source>
108
					<target>${maven.compiler.target}</target>
109
					<encoding>${maven.compiler.encoding}</encoding>
110
				</configuration>
111
			</plugin>
112
			<plugin>
113
				<groupId>org.codehaus.mojo</groupId>
114
				<artifactId>cobertura-maven-plugin</artifactId>
115
				<configuration>
116
					<instrumentation>
117
					</instrumentation>
118
				</configuration>
119
				<executions>
120
					<execution>
121
						<goals>
122
							<goal>clean</goal>
123
						</goals>
124
					</execution>
125
				</executions>
126
			</plugin>
127
			<plugin>
128
				<groupId>org.apache.maven.plugins</groupId>
129
				<artifactId>maven-source-plugin</artifactId>
130
				<executions>
131
					<execution>
132
						<id>attach-sources</id>
133
						<phase>verify</phase>
134
						<goals>
135
							<goal>jar</goal>
136
						</goals>
137
					</execution>
138
				</executions>
139
			</plugin>
140
			<plugin>
141
				<groupId>org.apache.maven.plugins</groupId>
142
				<artifactId>maven-javadoc-plugin</artifactId>
143
				<executions>
144
					<execution>
145
						<id>attach-javadoc</id>
146
						<phase>verify</phase>
147
						<goals>
148
							<goal>jar</goal>
149
						</goals>
150
					</execution>
151
				</executions>
152
			</plugin>
153
		</plugins>
154
	</build>
155
156
	<reporting>
157
		<plugins>
158
			<plugin>
159
				<groupId>org.apache.maven.plugins</groupId>
160
				<artifactId>maven-surefire-report-plugin</artifactId>
161
			</plugin>
162
			<plugin>
163
				<groupId>org.apache.maven.plugins</groupId>
164
				<artifactId>maven-javadoc-plugin</artifactId>
165
				<configuration>
166
					<charset>${maven.compiler.encoding}</charset>
167
					<docencoding>${maven.compiler.encoding}</docencoding>
168
					<encoding>${maven.compiler.encoding}</encoding>
169
				</configuration>
170
			</plugin>
171
			<plugin>
172
				<groupId>org.codehaus.mojo</groupId>
173
				<artifactId>cobertura-maven-plugin</artifactId>
174
			</plugin>
175
			<plugin>
176
				<groupId>org.sonatype.maven.plugin</groupId>
177
				<artifactId>emma-maven-plugin</artifactId>
178
			</plugin>
179
			<plugin>
180
				<groupId>org.codehaus.mojo</groupId>
181
				<artifactId>jdepend-maven-plugin</artifactId>
182
			</plugin>
183
			<plugin>
184
				<artifactId>maven-pmd-plugin</artifactId>
185
				<configuration>
186
					<sourceEncoding>${maven.compiler.encoding}</sourceEncoding>
187
					<minimumTokens>50</minimumTokens>
188
					<includeTests>true</includeTests>
189
					<targetJdk>${maven.compiler.target}</targetJdk>
190
				</configuration>
191
			</plugin>
192
			<plugin>
193
				<groupId>org.codehaus.mojo</groupId>
194
				<artifactId>findbugs-maven-plugin</artifactId>
195
			</plugin>
196
			<plugin>
197
				<groupId>org.codehaus.mojo</groupId>
198
				<artifactId>javancss-maven-plugin</artifactId>
199
				<configuration>
200
					<forceEncoding>${maven.compiler.encoding}</forceEncoding>
201
				</configuration>
202
			</plugin>
203
		</plugins>
204
	</reporting>	
205
206
	<properties>
207
		<maven.compiler.encoding>utf-8</maven.compiler.encoding>
208
		<maven.compiler.target>1.5</maven.compiler.target>
209
		<maven.compiler.source>1.5</maven.compiler.source>
210
	</properties>
211
212
	<distributionManagement>
213
		<repository>
214
			<id>nhncorp-2</id>
215
			<name>NHN Corp. Internal Repository 2</name>
216
			<url>dav:http://repo.nhncorp.com/maven2</url>
217
		</repository>
218
	</distributionManagement>
219
220
	<profiles>
221
		<profile>
222
			<id>clover</id>
223
			<properties>
224
				<clover.version>2.3.1</clover.version>
225
			</properties>
226
			<build>
227
				<plugins>
228
					<plugin>
229
						<groupId>com.atlassian.maven.plugins</groupId>
230
						<artifactId>maven-clover2-plugin</artifactId>
231
						<version>${clover.version}</version>
232
						<configuration>
233
							<licenseLocation>${clover.licenseLocation}</licenseLocation>
234
							<jdk>${maven.compiler.source}</jdk>
235
							<encoding>${maven.compiler.encoding}</encoding>
236
						</configuration>
237
						<executions>
238
							<execution>
239
								<phase>pre-site</phase>
240
								<goals>
241
									<goal>instrument</goal>
242
								</goals>
243
							</execution>
244
						</executions>
245
					</plugin>
246
				</plugins>
247
			</build>
248
			<reporting>
249
				<plugins>
250
					<plugin>
251
						<groupId>com.atlassian.maven.plugins</groupId>
252
						<artifactId>maven-clover2-plugin</artifactId>
253
						<version>${clover.version}</version>
254
						<configuration>
255
							<licenseLocation>${clover.licenseLocation}</licenseLocation>
256
						</configuration>
257
					</plugin>
258
				</plugins>
259
			</reporting>	
260
		</profile>
261
	</profiles>
262
	
1
<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">
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>tokyotyrant</groupId>
4
  <artifactId>tokyotyrant</artifactId>
5
  <packaging>jar</packaging>
6
  <version>0.8.1</version>
7
  <name>tokyotyrant</name>
8
  <description>This module implements the pure Java client which connects to the server of Tokyo Tyrant and speaks its original binary protocol.</description>
9
  <url>http://code.google.com/p/tokyotyrant-java</url>
10
11
	<scm>
12
		<connection>scm:hg:http://bitbucket.org/EP/tokyotyrant-java/</connection>
13
		<developerConnection>scm:hg:https://bitbucket.org/EP/tokyotyrant-java/</developerConnection>
14
		<url>http://www.bitbucket.org/EP/tokyotyrant-java/</url>
15
	</scm>
16
	
17
	<issueManagement>
18
		<url>http://code.google.com/p/tokyotyrant-java/issues/</url>
19
	</issueManagement>
20
	
21
	<developers>
22
		<developer>
23
			<id>eungju</id>
24
			<name>Eung-ju PARK</name>
25
		</developer>
26
	</developers>
27
	
28
	<licenses>
29
		<license>
30
			<name>Apache License 2.0</name>
31
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
32
		</license>
33
	</licenses>
34
35
	<repositories>
36
		<repository>
37
			<id>repository.jboss.org</id>
38
			<url>http://repository.jboss.org/maven2</url>
39
			<snapshots>
40
				<enabled>false</enabled>
41
			</snapshots>
42
		</repository>
43
	</repositories>
44
45
	<pluginRepositories>
46
		<pluginRepository>
47
			<id>sonatype.org</id>
48
			<name>Public Sonatype Maven Repository</name>
49
			<url>http://repository.sonatype.org/content/groups/public</url>
50
		</pluginRepository>
51
	</pluginRepositories>
52
	
53
  <dependencies>
54
	<dependency>
55
		<groupId>org.jboss.netty</groupId>
56
		<artifactId>netty</artifactId>
57
		<version>3.1.0.BETA2</version>
58
	</dependency>
59
    <dependency>
60
      <groupId>org.slf4j</groupId>
61
      <artifactId>slf4j-api</artifactId>
62
      <version>1.5.6</version>
63
    </dependency>
64
    <dependency>
65
      <groupId>org.slf4j</groupId>
66
      <artifactId>slf4j-log4j12</artifactId>
67
      <version>1.5.6</version>
68
      <scope>runtime</scope>
69
      <optional>true</optional>
70
    </dependency>
71
72
    <dependency>
73
      <groupId>org.jmock</groupId>
74
      <artifactId>jmock</artifactId>
75
      <version>2.5.1</version>
76
      <scope>test</scope>
77
    </dependency>
78
    <dependency>
79
      <groupId>org.jmock</groupId>
80
      <artifactId>jmock-legacy</artifactId>
81
      <version>2.5.1</version>
82
      <scope>test</scope>
83
    </dependency>
84
    <dependency>
85
      <groupId>org.jmock</groupId>
86
      <artifactId>jmock-junit4</artifactId>
87
      <version>2.5.1</version>
88
      <scope>test</scope>
89
    </dependency>
90
	<dependency>
91
		<groupId>org.infinitest</groupId>
92
		<artifactId>infinitest</artifactId>
93
		<version>4.0.1</version>
94
		<scope>test</scope>
95
	</dependency>
96
97
  </dependencies>
98
99
	<build>
100
		<plugins>
101
			<plugin>
102
				<artifactId>maven-compiler-plugin</artifactId>
103
				<configuration>
104
					<debug>true</debug>
105
					<optimize>true</optimize>
106
					<showDeprecations>true</showDeprecations>
107
					<source>${maven.compiler.source}</source>
108
					<target>${maven.compiler.target}</target>
109
					<encoding>${maven.compiler.encoding}</encoding>
110
				</configuration>
111
			</plugin>
112
			<plugin>
113
				<groupId>org.codehaus.mojo</groupId>
114
				<artifactId>cobertura-maven-plugin</artifactId>
115
				<configuration>
116
					<instrumentation>
117
					</instrumentation>
118
				</configuration>
119
				<executions>
120
					<execution>
121
						<goals>
122
							<goal>clean</goal>
123
						</goals>
124
					</execution>
125
				</executions>
126
			</plugin>
127
			<plugin>
128
				<groupId>org.apache.maven.plugins</groupId>
129
				<artifactId>maven-source-plugin</artifactId>
130
				<executions>
131
					<execution>
132
						<id>attach-sources</id>
133
						<phase>verify</phase>
134
						<goals>
135
							<goal>jar</goal>
136
						</goals>
137
					</execution>
138
				</executions>
139
			</plugin>
140
			<plugin>
141
				<groupId>org.apache.maven.plugins</groupId>
142
				<artifactId>maven-javadoc-plugin</artifactId>
143
				<executions>
144
					<execution>
145
						<id>attach-javadoc</id>
146
						<phase>verify</phase>
147
						<goals>
148
							<goal>jar</goal>
149
						</goals>
150
					</execution>
151
				</executions>
152
			</plugin>
153
		</plugins>
154
	</build>
155
156
	<reporting>
157
		<plugins>
158
			<plugin>
159
				<groupId>org.apache.maven.plugins</groupId>
160
				<artifactId>maven-surefire-report-plugin</artifactId>
161
			</plugin>
162
			<plugin>
163
				<groupId>org.apache.maven.plugins</groupId>
164
				<artifactId>maven-javadoc-plugin</artifactId>
165
				<configuration>
166
					<charset>${maven.compiler.encoding}</charset>
167
					<docencoding>${maven.compiler.encoding}</docencoding>
168
					<encoding>${maven.compiler.encoding}</encoding>
169
				</configuration>
170
			</plugin>
171
			<plugin>
172
				<groupId>org.codehaus.mojo</groupId>
173
				<artifactId>cobertura-maven-plugin</artifactId>
174
			</plugin>
175
			<plugin>
176
				<groupId>org.sonatype.maven.plugin</groupId>
177
				<artifactId>emma-maven-plugin</artifactId>
178
			</plugin>
179
			<plugin>
180
				<groupId>org.codehaus.mojo</groupId>
181
				<artifactId>jdepend-maven-plugin</artifactId>
182
			</plugin>
183
			<plugin>
184
				<artifactId>maven-pmd-plugin</artifactId>
185
				<configuration>
186
					<sourceEncoding>${maven.compiler.encoding}</sourceEncoding>
187
					<minimumTokens>50</minimumTokens>
188
					<includeTests>true</includeTests>
189
					<targetJdk>${maven.compiler.target}</targetJdk>
190
				</configuration>
191
			</plugin>
192
			<plugin>
193
				<groupId>org.codehaus.mojo</groupId>
194
				<artifactId>findbugs-maven-plugin</artifactId>
195
			</plugin>
196
			<plugin>
197
				<groupId>org.codehaus.mojo</groupId>
198
				<artifactId>javancss-maven-plugin</artifactId>
199
				<configuration>
200
					<forceEncoding>${maven.compiler.encoding}</forceEncoding>
201
				</configuration>
202
			</plugin>
203
		</plugins>
204
	</reporting>	
205
206
	<properties>
207
		<maven.compiler.encoding>utf-8</maven.compiler.encoding>
208
		<maven.compiler.target>1.5</maven.compiler.target>
209
		<maven.compiler.source>1.5</maven.compiler.source>
210
	</properties>
211
212
	<distributionManagement>
213
		<repository>
214
			<id>nhncorp-2</id>
215
			<name>NHN Corp. Internal Repository 2</name>
216
			<url>dav:http://repo.nhncorp.com/maven2</url>
217
		</repository>
218
	</distributionManagement>
219
220
	<profiles>
221
		<profile>
222
			<id>clover</id>
223
			<properties>
224
				<clover.version>2.3.1</clover.version>
225
			</properties>
226
			<build>
227
				<plugins>
228
					<plugin>
229
						<groupId>com.atlassian.maven.plugins</groupId>
230
						<artifactId>maven-clover2-plugin</artifactId>
231
						<version>${clover.version}</version>
232
						<configuration>
233
							<licenseLocation>${clover.licenseLocation}</licenseLocation>
234
							<jdk>${maven.compiler.source}</jdk>
235
							<encoding>${maven.compiler.encoding}</encoding>
236
						</configuration>
237
						<executions>
238
							<execution>
239
								<phase>pre-site</phase>
240
								<goals>
241
									<goal>instrument</goal>
242
								</goals>
243
							</execution>
244
						</executions>
245
					</plugin>
246
				</plugins>
247
			</build>
248
			<reporting>
249
				<plugins>
250
					<plugin>
251
						<groupId>com.atlassian.maven.plugins</groupId>
252
						<artifactId>maven-clover2-plugin</artifactId>
253
						<version>${clover.version}</version>
254
						<configuration>
255
							<licenseLocation>${clover.licenseLocation}</licenseLocation>
256
						</configuration>
257
					</plugin>
258
				</plugins>
259
			</reporting>	
260
		</profile>
261
	</profiles>
262
	
263
263
</project>