|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
6 | 8 | <groupId>io.scalecube</groupId> |
7 | 9 | <artifactId>scalecube-parent</artifactId> |
8 | | - <version>0.3.12</version> |
| 10 | + <version>0.3.14</version> |
9 | 11 | </parent> |
10 | 12 |
|
11 | 13 | <artifactId>scalecube-security-parent</artifactId> |
|
39 | 41 | </modules> |
40 | 42 |
|
41 | 43 | <properties> |
42 | | - <vault-java-driver.version>5.1.0</vault-java-driver.version> |
43 | | - <jackson.version>2.19.2</jackson.version> |
44 | | - <slf4j.version>1.7.36</slf4j.version> |
45 | | - <auth0.java-jwt.version>4.5.0</auth0.java-jwt.version> |
46 | | - |
47 | | - <mockito-junit.version>5.20.0</mockito-junit.version> |
48 | | - <mockito-inline.version>5.2.0</mockito-inline.version> |
49 | | - <junit-jupiter.version>5.8.2</junit-jupiter.version> |
50 | | - <hamcrest.version>1.3</hamcrest.version> |
51 | | - <log4j.version>2.17.2</log4j.version> |
52 | | - <testcontainers.version>1.21.3</testcontainers.version> |
| 44 | + <scalecube-test-support.version>0.1.0</scalecube-test-support.version> |
53 | 45 |
|
54 | 46 | <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-security |
55 | 47 | </distributionManagement.url> |
56 | 48 | <checkstyle.suppressions.location>checkstyle-suppressions.xml</checkstyle.suppressions.location> |
57 | 49 | </properties> |
58 | 50 |
|
59 | | - <dependencyManagement> |
60 | | - <dependencies> |
61 | | - <!-- Vault --> |
62 | | - <dependency> |
63 | | - <groupId>com.bettercloud</groupId> |
64 | | - <artifactId>vault-java-driver</artifactId> |
65 | | - <version>${vault-java-driver.version}</version> |
66 | | - </dependency> |
67 | | - <!-- Slf4j --> |
68 | | - <dependency> |
69 | | - <groupId>org.slf4j</groupId> |
70 | | - <artifactId>slf4j-api</artifactId> |
71 | | - <version>${slf4j.version}</version> |
72 | | - </dependency> |
73 | | - <!-- Auth0/JWT --> |
74 | | - <dependency> |
75 | | - <groupId>com.auth0</groupId> |
76 | | - <artifactId>java-jwt</artifactId> |
77 | | - <version>${auth0.java-jwt.version}</version> |
78 | | - </dependency> |
79 | | - <!-- Jackson --> |
80 | | - <dependency> |
81 | | - <groupId>com.fasterxml.jackson</groupId> |
82 | | - <artifactId>jackson-bom</artifactId> |
83 | | - <version>${jackson.version}</version> |
84 | | - <type>pom</type> |
85 | | - <scope>import</scope> |
86 | | - </dependency> |
87 | | - <!-- Logging --> |
88 | | - <dependency> |
89 | | - <groupId>org.apache.logging.log4j</groupId> |
90 | | - <artifactId>log4j-bom</artifactId> |
91 | | - <version>${log4j.version}</version> |
92 | | - <type>pom</type> |
93 | | - <scope>import</scope> |
94 | | - </dependency> |
95 | | - <!-- Test --> |
96 | | - <dependency> |
97 | | - <groupId>org.testcontainers</groupId> |
98 | | - <artifactId>testcontainers-bom</artifactId> |
99 | | - <version>${testcontainers.version}</version> |
100 | | - <type>pom</type> |
101 | | - <scope>import</scope> |
102 | | - </dependency> |
103 | | - </dependencies> |
104 | | - </dependencyManagement> |
105 | | - |
106 | 51 | <dependencies> |
107 | | - <!-- Test --> |
108 | | - <dependency> |
109 | | - <groupId>org.junit.jupiter</groupId> |
110 | | - <artifactId>junit-jupiter-engine</artifactId> |
111 | | - <version>${junit-jupiter.version}</version> |
112 | | - <scope>test</scope> |
113 | | - </dependency> |
114 | | - <dependency> |
115 | | - <groupId>org.junit.jupiter</groupId> |
116 | | - <artifactId>junit-jupiter-params</artifactId> |
117 | | - <version>${junit-jupiter.version}</version> |
118 | | - <scope>test</scope> |
119 | | - </dependency> |
120 | | - <dependency> |
121 | | - <groupId>org.mockito</groupId> |
122 | | - <artifactId>mockito-junit-jupiter</artifactId> |
123 | | - <version>${mockito-junit.version}</version> |
124 | | - <scope>test</scope> |
125 | | - </dependency> |
| 52 | + <!-- Tests --> |
126 | 53 | <dependency> |
127 | | - <groupId>org.mockito</groupId> |
128 | | - <artifactId>mockito-inline</artifactId> |
129 | | - <version>${mockito-inline.version}</version> |
130 | | - <scope>test</scope> |
131 | | - </dependency> |
132 | | - <dependency> |
133 | | - <groupId>org.hamcrest</groupId> |
134 | | - <artifactId>hamcrest-all</artifactId> |
135 | | - <version>${hamcrest.version}</version> |
| 54 | + <groupId>io.scalecube</groupId> |
| 55 | + <artifactId>scalecube-test-support</artifactId> |
| 56 | + <version>${scalecube-test-support.version}</version> |
136 | 57 | <scope>test</scope> |
137 | 58 | </dependency> |
138 | 59 | <dependency> |
139 | 60 | <groupId>org.testcontainers</groupId> |
140 | 61 | <artifactId>vault</artifactId> |
141 | 62 | <scope>test</scope> |
142 | 63 | </dependency> |
143 | | - <dependency> |
144 | | - <groupId>org.apache.logging.log4j</groupId> |
145 | | - <artifactId>log4j-slf4j-impl</artifactId> |
146 | | - <scope>test</scope> |
147 | | - </dependency> |
148 | | - <dependency> |
149 | | - <groupId>org.apache.logging.log4j</groupId> |
150 | | - <artifactId>log4j-core</artifactId> |
151 | | - <scope>test</scope> |
152 | | - </dependency> |
153 | 64 | </dependencies> |
154 | 65 |
|
155 | 66 | </project> |
0 commit comments