Skip to content

Commit 185b858

Browse files
Bump ai.djl.huggingface:tokenizers from 0.31.1 to 0.36.0 (#961)
1 parent f347508 commit 185b858

11 files changed

Lines changed: 220 additions & 103 deletions

File tree

pom.xml

Lines changed: 168 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,28 @@
2020
<spotbugs-version>4.9.8.2</spotbugs-version>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<license.licenseName>epl_v1</license.licenseName>
23-
<bouncycastle.version>1.83</bouncycastle.version>
23+
<bouncycastle.version>1.83</bouncycastle.version>
24+
<assertj.version>3.27.7</assertj.version>
25+
<bnd.version>7.2.1</bnd.version>
26+
<caffeine.version>3.1.8</caffeine.version>
27+
<djl.version>0.36.0</djl.version>
28+
<!-- Pin ONNX Runtime native version: 1.21.1 (from DJL 0.36.0) fails
29+
DLL init on Windows; 1.19.0 (from DJL 0.31.1) works. -->
30+
<onnxruntime.version>1.19.0</onnxruntime.version>
31+
<eclipse-jdt-core.version>3.44.0</eclipse-jdt-core.version>
32+
<gson.version>2.13.2</gson.version>
33+
<hibernate.version>6.6.13.Final</hibernate.version>
34+
<hibernate-search.version>7.2.0.Final</hibernate-search.version>
35+
<jetty.version>12.1.7</jetty.version>
36+
<jgit.version>7.5.0.202512021534-r</jgit.version>
37+
<jmh.version>1.37</jmh.version>
38+
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
39+
<maven-jar-plugin.version>3.5.0</maven-jar-plugin.version>
40+
<maven-shade-plugin.version>3.6.1</maven-shade-plugin.version>
41+
<maven-surefire-plugin.version>3.5.5</maven-surefire-plugin.version>
42+
<maven-surefire-report-plugin.version>3.5.5</maven-surefire-report-plugin.version>
43+
<slf4j.version>2.0.17</slf4j.version>
44+
<snakeyaml.version>2.6</snakeyaml.version>
2445
</properties>
2546
<modules>
2647
<module>sandbox-functional-converter-core</module>
@@ -284,8 +305,8 @@
284305
</plugin>
285306
<plugin>
286307
<groupId>org.apache.maven.plugins</groupId>
287-
<artifactId>maven-compiler-plugin</artifactId>
288-
<version>3.15.0</version>
308+
<artifactId>maven-compiler-plugin</artifactId>
309+
<version>${maven-compiler-plugin.version}</version>
289310
<configuration>
290311
<release>${java-version}</release>
291312
</configuration>
@@ -351,14 +372,14 @@
351372
</plugin>
352373
<plugin>
353374
<groupId>org.apache.maven.plugins</groupId>
354-
<artifactId>maven-surefire-report-plugin</artifactId>
355-
<version>3.5.5</version>
356-
<configuration>
357-
<showSuccess>true</showSuccess>
358-
<linkXRef>false</linkXRef>
359-
</configuration>
360-
</plugin>
361-
</plugins>
375+
<artifactId>maven-surefire-report-plugin</artifactId>
376+
<version>${maven-surefire-report-plugin.version}</version>
377+
<configuration>
378+
<showSuccess>true</showSuccess>
379+
<linkXRef>false</linkXRef>
380+
</configuration>
381+
</plugin>
382+
</plugins>
362383
</reporting>
363384
<dependencyManagement>
364385
<dependencies>
@@ -674,13 +695,140 @@
674695
<artifactId>bcpg-jdk18on</artifactId>
675696
<version>${bouncycastle.version}</version>
676697
</dependency>
677-
<dependency>
678-
<groupId>org.bouncycastle</groupId>
679-
<artifactId>bcprov-jdk18on</artifactId>
680-
<version>${bouncycastle.version}</version>
681-
</dependency>
682-
683-
</dependencies>
698+
<dependency>
699+
<groupId>org.bouncycastle</groupId>
700+
<artifactId>bcprov-jdk18on</artifactId>
701+
<version>${bouncycastle.version}</version>
702+
</dependency>
703+
704+
<!-- Third-party dependencies (shared across modules) -->
705+
<dependency>
706+
<groupId>org.eclipse.jgit</groupId>
707+
<artifactId>org.eclipse.jgit</artifactId>
708+
<version>${jgit.version}</version>
709+
</dependency>
710+
<dependency>
711+
<groupId>org.eclipse.jgit</groupId>
712+
<artifactId>org.eclipse.jgit.http.server</artifactId>
713+
<version>${jgit.version}</version>
714+
</dependency>
715+
<dependency>
716+
<groupId>org.eclipse.jdt</groupId>
717+
<artifactId>org.eclipse.jdt.core</artifactId>
718+
<version>${eclipse-jdt-core.version}</version>
719+
</dependency>
720+
<dependency>
721+
<groupId>org.eclipse.jdt</groupId>
722+
<artifactId>ecj</artifactId>
723+
<version>${eclipse-jdt-core.version}</version>
724+
</dependency>
725+
<dependency>
726+
<groupId>com.google.code.gson</groupId>
727+
<artifactId>gson</artifactId>
728+
<version>${gson.version}</version>
729+
</dependency>
730+
<dependency>
731+
<groupId>org.slf4j</groupId>
732+
<artifactId>slf4j-api</artifactId>
733+
<version>${slf4j.version}</version>
734+
</dependency>
735+
<dependency>
736+
<groupId>org.slf4j</groupId>
737+
<artifactId>slf4j-nop</artifactId>
738+
<version>${slf4j.version}</version>
739+
</dependency>
740+
<dependency>
741+
<groupId>org.slf4j</groupId>
742+
<artifactId>slf4j-simple</artifactId>
743+
<version>${slf4j.version}</version>
744+
</dependency>
745+
<dependency>
746+
<groupId>org.yaml</groupId>
747+
<artifactId>snakeyaml</artifactId>
748+
<version>${snakeyaml.version}</version>
749+
</dependency>
750+
<dependency>
751+
<groupId>org.assertj</groupId>
752+
<artifactId>assertj-core</artifactId>
753+
<version>${assertj.version}</version>
754+
</dependency>
755+
<dependency>
756+
<groupId>org.hibernate.orm</groupId>
757+
<artifactId>hibernate-core</artifactId>
758+
<version>${hibernate.version}</version>
759+
</dependency>
760+
<dependency>
761+
<groupId>org.hibernate.orm</groupId>
762+
<artifactId>hibernate-hikaricp</artifactId>
763+
<version>${hibernate.version}</version>
764+
</dependency>
765+
<dependency>
766+
<groupId>org.hibernate.orm</groupId>
767+
<artifactId>hibernate-jcache</artifactId>
768+
<version>${hibernate.version}</version>
769+
</dependency>
770+
<dependency>
771+
<groupId>org.hibernate.search</groupId>
772+
<artifactId>hibernate-search-mapper-orm</artifactId>
773+
<version>${hibernate-search.version}</version>
774+
</dependency>
775+
<dependency>
776+
<groupId>org.hibernate.search</groupId>
777+
<artifactId>hibernate-search-backend-lucene</artifactId>
778+
<version>${hibernate-search.version}</version>
779+
</dependency>
780+
<dependency>
781+
<groupId>com.github.ben-manes.caffeine</groupId>
782+
<artifactId>caffeine</artifactId>
783+
<version>${caffeine.version}</version>
784+
</dependency>
785+
<dependency>
786+
<groupId>com.github.ben-manes.caffeine</groupId>
787+
<artifactId>jcache</artifactId>
788+
<version>${caffeine.version}</version>
789+
</dependency>
790+
<dependency>
791+
<groupId>org.openjdk.jmh</groupId>
792+
<artifactId>jmh-core</artifactId>
793+
<version>${jmh.version}</version>
794+
</dependency>
795+
<dependency>
796+
<groupId>org.openjdk.jmh</groupId>
797+
<artifactId>jmh-generator-annprocess</artifactId>
798+
<version>${jmh.version}</version>
799+
</dependency>
800+
<dependency>
801+
<groupId>org.eclipse.jetty.ee10</groupId>
802+
<artifactId>jetty-ee10-servlet</artifactId>
803+
<version>${jetty.version}</version>
804+
</dependency>
805+
<dependency>
806+
<groupId>org.eclipse.jetty</groupId>
807+
<artifactId>jetty-session</artifactId>
808+
<version>${jetty.version}</version>
809+
</dependency>
810+
<dependency>
811+
<groupId>ai.djl</groupId>
812+
<artifactId>api</artifactId>
813+
<version>${djl.version}</version>
814+
</dependency>
815+
<dependency>
816+
<groupId>ai.djl.huggingface</groupId>
817+
<artifactId>tokenizers</artifactId>
818+
<version>${djl.version}</version>
819+
</dependency>
820+
<dependency>
821+
<groupId>ai.djl.onnxruntime</groupId>
822+
<artifactId>onnxruntime-engine</artifactId>
823+
<version>${djl.version}</version>
824+
</dependency>
825+
<dependency>
826+
<groupId>com.microsoft.onnxruntime</groupId>
827+
<artifactId>onnxruntime</artifactId>
828+
<version>${onnxruntime.version}</version>
829+
</dependency>
830+
831+
</dependencies>
684832
</dependencyManagement>
685833
<!-- -->
686834
<distributionManagement>
@@ -789,8 +937,8 @@
789937
<plugins>
790938
<plugin>
791939
<groupId>org.apache.maven.plugins</groupId>
792-
<artifactId>maven-surefire-report-plugin</artifactId>
793-
<version>3.5.5</version>
940+
<artifactId>maven-surefire-report-plugin</artifactId>
941+
<version>${maven-surefire-report-plugin.version}</version>
794942
<executions>
795943
<execution>
796944
<id>generate-test-report</id>

sandbox-ast-api-jdt/pom.xml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
<maven.compiler.target>21</maven.compiler.target>
2323
<maven.compiler.release>21</maven.compiler.release>
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25-
<junit.version>6.0.3</junit.version>
26-
<assertj.version>3.27.7</assertj.version>
27-
<jacoco-version>0.8.14</jacoco-version>
2825
<!-- Disable Tycho for this plain jar module (parent uses tycho-maven-plugin with extensions=true) -->
2926
<tycho.mode>maven</tycho.mode>
3027
</properties>
@@ -41,15 +38,14 @@
4138
<dependency>
4239
<groupId>org.eclipse.jdt</groupId>
4340
<artifactId>org.eclipse.jdt.core</artifactId>
44-
<version>3.45.0</version>
41+
<version>${eclipse-jdt-core.version}</version>
4542
<scope>provided</scope>
4643
</dependency>
4744

4845
<!-- JUnit 5 for testing -->
4946
<dependency>
5047
<groupId>org.junit.jupiter</groupId>
5148
<artifactId>junit-jupiter</artifactId>
52-
<version>${junit.version}</version>
5349
<scope>test</scope>
5450
</dependency>
5551

@@ -67,7 +63,7 @@
6763
<plugin>
6864
<groupId>org.apache.maven.plugins</groupId>
6965
<artifactId>maven-compiler-plugin</artifactId>
70-
<version>3.15.0</version>
66+
<version>${maven-compiler-plugin.version}</version>
7167
<configuration>
7268
<release>21</release>
7369
</configuration>
@@ -76,7 +72,7 @@
7672
<plugin>
7773
<groupId>org.apache.maven.plugins</groupId>
7874
<artifactId>maven-surefire-plugin</artifactId>
79-
<version>3.5.5</version>
75+
<version>${maven-surefire-plugin.version}</version>
8076
</plugin>
8177

8278
<!-- JaCoCo for code coverage -->
@@ -104,7 +100,7 @@
104100
<plugin>
105101
<groupId>biz.aQute.bnd</groupId>
106102
<artifactId>bnd-maven-plugin</artifactId>
107-
<version>7.2.1</version>
103+
<version>${bnd.version}</version>
108104
<executions>
109105
<execution>
110106
<goals>
@@ -120,7 +116,7 @@
120116
<!-- Use 3.3.0: versions 3.4.0+ use maven-archiver with session-scoped injection
121117
that conflicts with Tycho extensions in M2E, causing
122118
"Cannot access session scope outside of a scoping block" -->
123-
<version>3.5.0</version>
119+
<version>${maven-jar-plugin.version}</version>
124120
<configuration>
125121
<archive>
126122
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>

sandbox-ast-api/pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
<maven.compiler.target>21</maven.compiler.target>
2323
<maven.compiler.release>21</maven.compiler.release>
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25-
<junit.version>6.0.3</junit.version>
26-
<assertj.version>3.27.7</assertj.version>
27-
<jacoco-version>0.8.14</jacoco-version>
2825
<!-- Disable Tycho for this plain jar module (parent uses tycho-maven-plugin with extensions=true) -->
2926
<tycho.mode>maven</tycho.mode>
3027
</properties>
@@ -34,7 +31,6 @@
3431
<dependency>
3532
<groupId>org.junit.jupiter</groupId>
3633
<artifactId>junit-jupiter</artifactId>
37-
<version>${junit.version}</version>
3834
<scope>test</scope>
3935
</dependency>
4036

@@ -52,7 +48,7 @@
5248
<plugin>
5349
<groupId>org.apache.maven.plugins</groupId>
5450
<artifactId>maven-compiler-plugin</artifactId>
55-
<version>3.15.0</version>
51+
<version>${maven-compiler-plugin.version}</version>
5652
<configuration>
5753
<release>21</release>
5854
</configuration>
@@ -61,7 +57,7 @@
6157
<plugin>
6258
<groupId>org.apache.maven.plugins</groupId>
6359
<artifactId>maven-surefire-plugin</artifactId>
64-
<version>3.5.5</version>
60+
<version>${maven-surefire-plugin.version}</version>
6561
</plugin>
6662

6763
<!-- JaCoCo for code coverage -->
@@ -89,7 +85,7 @@
8985
<plugin>
9086
<groupId>biz.aQute.bnd</groupId>
9187
<artifactId>bnd-maven-plugin</artifactId>
92-
<version>7.2.1</version>
88+
<version>${bnd.version}</version>
9389
<executions>
9490
<execution>
9591
<goals>
@@ -105,7 +101,7 @@
105101
<!-- Use 3.3.0: versions 3.4.0+ use maven-archiver with session-scoped injection
106102
that conflicts with Tycho extensions in M2E, causing
107103
"Cannot access session scope outside of a scoping block" -->
108-
<version>3.5.0</version>
104+
<version>${maven-jar-plugin.version}</version>
109105
<configuration>
110106
<archive>
111107
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>

sandbox-benchmarks/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
<maven.compiler.target>21</maven.compiler.target>
2323
<maven.compiler.release>21</maven.compiler.release>
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25-
<jmh.version>1.37</jmh.version>
2625
<uberjar.name>benchmarks</uberjar.name>
2726
<!-- Disable Tycho for this plain jar module (parent uses tycho-maven-plugin with extensions=true) -->
2827
<tycho.mode>maven</tycho.mode>
@@ -60,7 +59,7 @@
6059
<dependency>
6160
<groupId>org.eclipse.jdt</groupId>
6261
<artifactId>org.eclipse.jdt.core</artifactId>
63-
<version>3.45.0</version>
62+
<version>${eclipse-jdt-core.version}</version>
6463
</dependency>
6564
</dependencies>
6665

@@ -69,7 +68,7 @@
6968
<plugin>
7069
<groupId>org.apache.maven.plugins</groupId>
7170
<artifactId>maven-compiler-plugin</artifactId>
72-
<version>3.15.0</version>
71+
<version>${maven-compiler-plugin.version}</version>
7372
<configuration>
7473
<release>21</release>
7574
</configuration>
@@ -79,7 +78,7 @@
7978
<plugin>
8079
<groupId>org.apache.maven.plugins</groupId>
8180
<artifactId>maven-shade-plugin</artifactId>
82-
<version>3.6.1</version>
81+
<version>${maven-shade-plugin.version}</version>
8382
<executions>
8483
<execution>
8584
<phase>package</phase>

0 commit comments

Comments
 (0)