|
34 | 34 | <properties> |
35 | 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
36 | 36 | <maven.compiler.release>11</maven.compiler.release> |
37 | | - <junit.jupiter.version>5.10.2</junit.jupiter.version> |
| 37 | + <junit.jupiter.version>5.13.4</junit.jupiter.version> |
38 | 38 | <maven.surefire.version>3.2.5</maven.surefire.version> |
39 | 39 | </properties> |
40 | 40 | <dependencies> |
|
47 | 47 | <dependency> |
48 | 48 | <groupId>io.split.client</groupId> |
49 | 49 | <artifactId>java-client</artifactId> |
50 | | - <version>4.16.1</version> |
| 50 | + <version>4.17.0</version> |
51 | 51 | </dependency> |
52 | 52 | <dependency> |
53 | 53 | <groupId>org.apache.httpcomponents</groupId> |
54 | 54 | <artifactId>httpclient</artifactId> |
55 | 55 | <version>4.5.14</version> |
56 | 56 | </dependency> |
57 | | - <dependency> |
58 | | - <groupId>io.split.integrations.azure</groupId> |
59 | | - <artifactId>impressions-listener</artifactId> |
60 | | - <version>0.9.1</version> |
61 | | - </dependency> |
62 | 57 | <dependency> |
63 | 58 | <groupId>org.mockito</groupId> |
64 | 59 | <artifactId>mockito-core</artifactId> |
65 | | - <version>3.4.6</version> |
| 60 | + <version>5.19.0</version> |
66 | 61 | <scope>test</scope> |
67 | 62 | </dependency> |
68 | 63 | <dependency> |
69 | 64 | <groupId>dev.openfeature</groupId> |
70 | 65 | <artifactId>sdk</artifactId> |
71 | 66 | <version>1.17.0</version> |
72 | 67 | </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 70 | + <artifactId>jackson-core</artifactId> |
| 71 | + <version>2.20.0</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 75 | + <artifactId>jackson-databind</artifactId> |
| 76 | + <version>2.20.0</version> |
| 77 | + </dependency> |
73 | 78 | </dependencies> |
74 | 79 | <build> |
75 | 80 | <pluginManagement> |
|
78 | 83 | <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
79 | 84 | <plugin> |
80 | 85 | <artifactId>maven-clean-plugin</artifactId> |
81 | | - <version>3.1.0</version> |
| 86 | + <version>3.5.0</version> |
82 | 87 | </plugin> |
83 | 88 | <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
84 | 89 | <plugin> |
85 | 90 | <artifactId>maven-resources-plugin</artifactId> |
86 | | - <version>3.0.2</version> |
| 91 | + <version>3.3.1</version> |
87 | 92 | </plugin> |
88 | 93 | <plugin> |
89 | 94 | <artifactId>maven-compiler-plugin</artifactId> |
90 | | - <version>3.8.0</version> |
| 95 | + <version>3.14.0</version> |
91 | 96 | </plugin> |
92 | 97 | <plugin> |
93 | 98 | <artifactId>maven-surefire-plugin</artifactId> |
94 | | - <version>2.22.1</version> |
| 99 | + <version>3.5.3</version> |
95 | 100 | </plugin> |
96 | 101 | <plugin> |
97 | 102 | <artifactId>maven-jar-plugin</artifactId> |
98 | | - <version>3.0.2</version> |
| 103 | + <version>3.4.2</version> |
99 | 104 | </plugin> |
100 | 105 | <plugin> |
101 | 106 | <artifactId>maven-install-plugin</artifactId> |
102 | | - <version>2.5.2</version> |
| 107 | + <version>3.1.4</version> |
103 | 108 | </plugin> |
104 | 109 | <plugin> |
105 | 110 | <artifactId>maven-deploy-plugin</artifactId> |
106 | | - <version>2.8.2</version> |
| 111 | + <version>3.1.4</version> |
107 | 112 | </plugin> |
108 | 113 | <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
109 | 114 | <plugin> |
110 | 115 | <artifactId>maven-site-plugin</artifactId> |
111 | | - <version>3.7.1</version> |
| 116 | + <version>3.21.0</version> |
112 | 117 | </plugin> |
113 | 118 | <plugin> |
114 | 119 | <artifactId>maven-project-info-reports-plugin</artifactId> |
115 | | - <version>3.0.0</version> |
| 120 | + <version>3.9.0</version> |
116 | 121 | </plugin> |
117 | 122 | </plugins> |
118 | 123 | </pluginManagement> |
119 | 124 | <plugins> |
120 | 125 | <plugin> |
121 | 126 | <groupId>org.apache.maven.plugins</groupId> |
122 | 127 | <artifactId>maven-compiler-plugin</artifactId> |
123 | | - <version>3.13.0</version> |
| 128 | + <version>3.14.0</version> |
124 | 129 | <configuration> |
125 | 130 | <source>11</source> |
126 | 131 | <target>11</target> |
|
143 | 148 | </execution> |
144 | 149 | </executions> |
145 | 150 | </plugin> |
146 | | - <plugin> |
147 | | - <groupId>org.sonatype.plugins</groupId> |
148 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
149 | | - <version>1.6.13</version> |
150 | | - <extensions>true</extensions> |
151 | | - <configuration> |
152 | | - <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
153 | | - </configuration> |
154 | | - </plugin> |
155 | 151 | <plugin> |
156 | 152 | <groupId>org.apache.maven.plugins</groupId> |
157 | 153 | <artifactId>maven-source-plugin</artifactId> |
|
168 | 164 | <plugin> |
169 | 165 | <groupId>org.apache.maven.plugins</groupId> |
170 | 166 | <artifactId>maven-gpg-plugin</artifactId> |
171 | | - <version>1.5</version> |
| 167 | + <version>3.2.8</version> |
172 | 168 | <executions> |
173 | 169 | <execution> |
174 | 170 | <id>sign-artifacts</id> |
|
179 | 175 | </execution> |
180 | 176 | </executions> |
181 | 177 | </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.sonatype.central</groupId> |
| 180 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 181 | + <version>0.7.0</version> |
| 182 | + <extensions>true</extensions> |
| 183 | + <configuration> |
| 184 | + <publishingServerId>central</publishingServerId> |
| 185 | + <autoPublish>false</autoPublish> |
| 186 | + <waitUntil>published</waitUntil> |
| 187 | + </configuration> |
| 188 | + </plugin> |
182 | 189 | </plugins> |
183 | 190 | </build> |
184 | 191 | </project> |
0 commit comments