Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit f2f4f56

Browse files
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # pom.xml
2 parents 83d74a7 + 73adaef commit f2f4f56

File tree

1 file changed

+18
-37
lines changed

1 file changed

+18
-37
lines changed

pom.xml

Lines changed: 18 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@
88
<name>searchcode</name>
99
<url>http://maven.apache.org</url>
1010
<properties>
11-
<jdk.version>21</jdk.version>
12-
<spark.version>2.9.4</spark.version>
13-
<spark.freemarker.version>2.7.1</spark.freemarker.version>
14-
<freemarker.version>2.3.34</freemarker.version>
11+
<jdk.version>1.11</jdk.version>
12+
<spark.version>2.7.2</spark.version>
13+
<spark.freemarker.version>2.0.0</spark.freemarker.version>
14+
<freemarker.version>2.3.23</freemarker.version>
1515
<dbcp.version>2.1.1</dbcp.version>
1616
<jbcrypt.version>0.4</jbcrypt.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19-
<java.io.tmpdir>\tmp\search-code</java.io.tmpdir>
2019
</properties>
2120
<dependencies>
2221
<!-- Spark Java -->
@@ -46,13 +45,13 @@
4645
<dependency>
4746
<groupId>org.xerial</groupId>
4847
<artifactId>sqlite-jdbc</artifactId>
49-
<version>3.41.2.2</version>
48+
<version>3.8.6</version>
5049
</dependency>
5150
<!-- MySQL/Sphinx http://sphinxsearch.com/forum/view.html?id=16178 must be version 5.1.35 -->
5251
<dependency>
53-
<groupId>com.mysql</groupId>
54-
<artifactId>mysql-connector-j</artifactId>
55-
<version>9.2.0</version>
52+
<groupId>mysql</groupId>
53+
<artifactId>mysql-connector-java</artifactId>
54+
<version>5.1.35</version>
5655
</dependency>
5756
<!-- Connection pool -->
5857
<dependency>
@@ -69,37 +68,37 @@
6968
<dependency>
7069
<groupId>commons-codec</groupId>
7170
<artifactId>commons-codec</artifactId>
72-
<version>1.13</version>
71+
<version>1.10</version>
7372
</dependency>
7473
<!-- Gson: Java to Json conversion -->
7574
<dependency>
7675
<groupId>com.google.code.gson</groupId>
7776
<artifactId>gson</artifactId>
78-
<version>2.8.9</version>
77+
<version>2.8.0</version>
7978
<scope>compile</scope>
8079
</dependency>
8180
<!-- Guava, generally awesome -->
8281
<dependency>
8382
<groupId>com.google.guava</groupId>
8483
<artifactId>guava</artifactId>
85-
<version>32.1.3-android</version>
84+
<version>18.0</version>
8685
</dependency>
8786
<!-- Quartz Job Scheduler -->
8887
<dependency>
8988
<groupId>org.quartz-scheduler</groupId>
9089
<artifactId>quartz</artifactId>
91-
<version>2.4.0-rc1</version>
90+
<version>2.2.2</version>
9291
</dependency>
9392
<dependency>
9493
<groupId>org.quartz-scheduler</groupId>
9594
<artifactId>quartz-jobs</artifactId>
96-
<version>2.4.0-rc2</version>
95+
<version>2.2.3</version>
9796
</dependency>
9897
<!-- Git Core Library -->
9998
<dependency>
10099
<groupId>org.eclipse.jgit</groupId>
101100
<artifactId>org.eclipse.jgit</artifactId>
102-
<version>6.6.1.202309021850-r</version>
101+
<version>4.5.0.201609210915-r</version>
103102
</dependency>
104103
<!-- String escaping -->
105104
<dependency>
@@ -111,7 +110,7 @@
111110
<dependency>
112111
<groupId>commons-io</groupId>
113112
<artifactId>commons-io</artifactId>
114-
<version>2.18.0</version>
113+
<version>2.4</version>
115114
</dependency>
116115
<!-- Charset guesser -->
117116
<dependency>
@@ -164,38 +163,22 @@
164163
<dependency>
165164
<groupId>junit</groupId>
166165
<artifactId>junit</artifactId>
167-
<version>4.13.1</version>
166+
<version>4.12</version>
168167
<scope>test</scope>
169168
</dependency>
170-
<!-- Mocking framework
169+
<!-- Mocking framework -->
171170
<dependency>
172171
<groupId>org.mockito</groupId>
173172
<artifactId>mockito-all</artifactId>
174173
<version>1.9.5</version>
175174
<scope>test</scope>
176175
</dependency>
177-
-->
178-
<dependency>
179-
<groupId>org.mockito</groupId>
180-
<artifactId>mockito-core</artifactId>
181-
<version>5.17.0</version>
182-
</dependency>
183-
184176
<dependency>
185177
<groupId>org.assertj</groupId>
186178
<artifactId>assertj-core</artifactId>
187179
<version>3.5.2</version>
188180
<scope>test</scope>
189181
</dependency>
190-
191-
192-
<!-- refactory - jar add -->
193-
<dependency>
194-
<groupId>org.apache.httpcomponents.client5</groupId>
195-
<artifactId>httpclient5</artifactId>
196-
<version>5.3.1</version> <!-- Verifique a versão mais recente -->
197-
</dependency>
198-
199182
</dependencies>
200183

201184
<build>
@@ -246,9 +229,8 @@
246229
<plugin>
247230
<groupId>org.apache.maven.plugins</groupId>
248231
<artifactId>maven-surefire-plugin</artifactId>
249-
<version>3.5.1</version>
232+
<version>2.19.1</version>
250233
<configuration>
251-
<argLine>-Djava.io.tmpdir=${java.io.tmpdir}</argLine>
252234
<excludes>
253235
<exclude>**/*ITCase.java</exclude>
254236
</excludes>
@@ -261,7 +243,6 @@
261243
</goals>
262244
<phase>integration-test</phase>
263245
<configuration>
264-
<argLine>-Djava.io.tmpdir=${java.io.tmpdir}</argLine>
265246
<excludes>
266247
<exclude>none</exclude>
267248
</excludes>

0 commit comments

Comments
 (0)