forked from vert-x3/vertx-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-info.java
More file actions
25 lines (25 loc) · 812 Bytes
/
module-info.java
File metadata and controls
25 lines (25 loc) · 812 Bytes
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
/*
* Copyright 2014 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
open module io.vertx.web.sstore.cookie.tests {
requires io.vertx.core;
requires io.vertx.web;
requires io.vertx.web.sstore.cookie;
requires io.vertx.web.tests;
requires junit;
requires io.vertx.testing.unit;
requires io.vertx.auth.common;
requires io.netty.codec.http;
}