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 218: 1a0156b00593
parent 217: fb574ff86f45
branch: default
Selectable coverage analyzers.
Eung-ju PARK
10 months ago

Changed (Δ585 bytes):

raw changeset »

pom.xml (75 lines added, 39 lines removed)

Up to file-list pom.xml:

42
42
		</repository>
43
43
	</repositories>
44
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
	
45
	<distributionManagement>
46
		<repository>
47
			<id>nhncorp-2</id>
48
			<name>NHN Corp. Internal Repository 2</name>
49
			<url>dav:http://repo.nhncorp.com/maven2</url>
50
		</repository>
51
	</distributionManagement>
52
53
53
  <dependencies>
54
54
	<dependency>
55
55
		<groupId>org.jboss.netty</groupId>
110
110
				</configuration>
111
111
			</plugin>
112
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
113
				<groupId>org.apache.maven.plugins</groupId>
129
114
				<artifactId>maven-source-plugin</artifactId>
130
115
				<executions>
170
155
			</plugin>
171
156
			<plugin>
172
157
				<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
158
				<artifactId>jdepend-maven-plugin</artifactId>
182
159
			</plugin>
183
160
			<plugin>
209
186
		<maven.compiler.source>1.5</maven.compiler.source>
210
187
	</properties>
211
188
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>
189
	<profiles>
219
190
220
	<profiles>
221
191
		<profile>
222
192
			<id>clover</id>
223
193
			<properties>
258
228
				</plugins>
259
229
			</reporting>	
260
230
		</profile>
231
232
		<profile>
233
			<id>cobertura</id>
234
			<build>
235
				<plugins>
236
					<plugin>
237
						<groupId>org.codehaus.mojo</groupId>
238
						<artifactId>cobertura-maven-plugin</artifactId>
239
						<configuration>
240
							<instrumentation>
241
							</instrumentation>
242
						</configuration>
243
						<executions>
244
							<execution>
245
								<goals>
246
									<goal>clean</goal>
247
								</goals>
248
							</execution>
249
						</executions>
250
					</plugin>
251
				</plugins>
252
			</build>
253
			<reporting>
254
				<plugins>
255
					<plugin>
256
						<groupId>org.codehaus.mojo</groupId>
257
						<artifactId>cobertura-maven-plugin</artifactId>
258
					</plugin>
259
				</plugins>
260
			</reporting>
261
		</profile>
262
263
		<profile>
264
			<id>emma</id>
265
			
266
			<pluginRepositories>
267
				<pluginRepository>
268
					<id>sonatype.org</id>
269
					<name>Public Sonatype Maven Repository</name>
270
					<url>http://repository.sonatype.org/content/groups/public</url>
271
				</pluginRepository>
272
			</pluginRepositories>
273
	
274
			<reporting>
275
				<plugins>
276
					<plugin>
277
					<groupId>org.sonatype.maven.plugin</groupId>
278
					<artifactId>emma-maven-plugin</artifactId>
279
					<version>1.0</version>
280
					</plugin>
281
				</plugins>
282
			</reporting>
283
		</profile>
284
285
		<profile>
286
			<id>undercover</id>
287
			<reporting>
288
				<plugins>
289
					<plugin>
290
						<groupId>undercover</groupId>
291
						<artifactId>undercover-maven-plugin</artifactId>
292
					</plugin>
293
				</plugins>
294
			</reporting>
295
		</profile>
296
261
297
	</profiles>
262
298
	
263
299
</project>