Skip to content

Commit 14e4ddc

Browse files
committed
work
1 parent e904875 commit 14e4ddc

File tree

1 file changed

+35
-25
lines changed

1 file changed

+35
-25
lines changed

pom.xml

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,20 @@
8181
<version.thymeleaf-spring-data-dialect>3.5.0</version.thymeleaf-spring-data-dialect>
8282

8383
<!-- Webjars -->
84-
<webjars.jquery.version>3.6.0</webjars.jquery.version>
84+
<webjars.jquery.version>3.6.1</webjars.jquery.version>
8585
<webjars.popper.js.version>2.9.3</webjars.popper.js.version>
8686
<webjars.bootstrap.version>5.2.0</webjars.bootstrap.version>
8787
<webjars.font-awesome.version>6.1.2</webjars.font-awesome.version>
88-
<opencsv.version>5.3</opencsv.version>
88+
<opencsv.version>5.7.0</opencsv.version>
8989

9090
<!-- Unit and Integration Testing -->
9191
<skipTests>true</skipTests>
9292
<xmlunit.version>2.9.0</xmlunit.version>
93-
<htmlunit.version>2.63.0</htmlunit.version>
93+
<htmlunit.version>2.64.0</htmlunit.version>
9494
<groovy-all.version>2.4.21</groovy-all.version>
9595
<hamcrest.version>2.2</hamcrest.version>
9696
<jsoup.version>1.15.3</jsoup.version>
97-
<pmdVersion>6.46.0</pmdVersion>
97+
<pmdVersion>6.49.0</pmdVersion>
9898

9999
<!-- SCM and Releasing -->
100100
<version.org.apache.maven.scm>1.13.0</version.org.apache.maven.scm>
@@ -250,6 +250,7 @@
250250
<type>pom</type>
251251
<scope>import</scope>
252252
</dependency>
253+
<!--
253254
<dependency>
254255
<groupId>org.springframework.integration</groupId>
255256
<artifactId>spring-integration-bom</artifactId>
@@ -262,6 +263,7 @@
262263
<artifactId>spring-integration-ws</artifactId>
263264
<version>${spring-integration.version}</version>
264265
</dependency>
266+
-->
265267

266268
<!-- webjars -->
267269
<dependency>
@@ -305,6 +307,8 @@
305307
<version>${lombok.version}</version>
306308
<optional>false</optional>
307309
</dependency>
310+
311+
<!--
308312
<dependency>
309313
<groupId>org.hamcrest</groupId>
310314
<artifactId>hamcrest</artifactId>
@@ -323,13 +327,19 @@
323327
<version>${hamcrest.version}</version>
324328
<scope>test</scope>
325329
</dependency>
326-
327330
<dependency>
328331
<groupId>org.jsoup</groupId>
329332
<artifactId>jsoup</artifactId>
330333
<version>${jsoup.version}</version>
331334
<scope>test</scope>
332335
</dependency>
336+
-->
337+
338+
<dependency>
339+
<groupId>org.postgresql</groupId>
340+
<artifactId>postgresql</artifactId>
341+
<version>42.4.1</version>
342+
</dependency>
333343

334344
<!-- SCM -->
335345
<dependency>
@@ -559,14 +569,13 @@
559569
<type>maven-plugin</type>
560570
<scope>provided</scope>
561571
</dependency>
562-
572+
<!--
563573
<dependency>
564574
<groupId>org.apache.maven.doxia</groupId>
565575
<artifactId>doxia-module-markdown</artifactId>
566576
<version>${version.doxia-module-markdown}</version>
567577
<scope>provided</scope>
568578
</dependency>
569-
570579
<dependency>
571580
<groupId>org.xmlunit</groupId>
572581
<artifactId>xmlunit-legacy</artifactId>
@@ -585,6 +594,7 @@
585594
<version>${groovy-all.version}</version>
586595
<scope>test</scope>
587596
</dependency>
597+
-->
588598
</dependencies>
589599
</dependencyManagement>
590600

@@ -607,7 +617,6 @@
607617
<scope>provided</scope>
608618
<optional>true</optional>
609619
</dependency>
610-
<!-- spring-boot-starter -->
611620
<dependency>
612621
<groupId>org.springframework.boot</groupId>
613622
<artifactId>spring-boot-starter-actuator</artifactId>
@@ -681,7 +690,7 @@
681690
<artifactId>spring-boot-starter-cache</artifactId>
682691
</dependency>
683692
-->
684-
<!-- org.springframework -->
693+
<!--
685694
<dependency>
686695
<groupId>org.springframework</groupId>
687696
<artifactId>spring-core</artifactId>
@@ -731,12 +740,11 @@
731740
<groupId>org.springframework.security</groupId>
732741
<artifactId>spring-security-config</artifactId>
733742
</dependency>
734-
<!--
735743
<dependency>
736744
<groupId>org.springframework.security</groupId>
737745
<artifactId>spring-security-remoting</artifactId>
738746
</dependency>
739-
-->
747+
740748
<dependency>
741749
<groupId>org.springframework.security</groupId>
742750
<artifactId>spring-security-web</artifactId>
@@ -757,14 +765,14 @@
757765
<groupId>org.springframework.data</groupId>
758766
<artifactId>spring-data-commons</artifactId>
759767
</dependency>
768+
-->
760769

761770
<dependency>
762771
<groupId>org.springframework.security</groupId>
763772
<artifactId>spring-security-test</artifactId>
764773
<scope>test</scope>
765774
</dependency>
766775

767-
<!-- Frontend Webjars -->
768776
<dependency>
769777
<groupId>org.webjars</groupId>
770778
<artifactId>jquery</artifactId>
@@ -781,16 +789,6 @@
781789
<groupId>org.webjars</groupId>
782790
<artifactId>font-awesome</artifactId>
783791
</dependency>
784-
785-
<dependency>
786-
<groupId>org.postgresql</groupId>
787-
<artifactId>postgresql</artifactId>
788-
</dependency>
789-
<dependency>
790-
<groupId>com.zaxxer</groupId>
791-
<artifactId>HikariCP</artifactId>
792-
</dependency>
793-
794792
<dependency>
795793
<groupId>org.thymeleaf</groupId>
796794
<artifactId>thymeleaf</artifactId>
@@ -824,19 +822,28 @@
824822
<dependency>
825823
<groupId>org.thymeleaf</groupId>
826824
<artifactId>thymeleaf-testing</artifactId>
827-
<scope>provided</scope>
825+
<scope>test</scope>
826+
</dependency>
827+
<dependency>
828+
<groupId>org.postgresql</groupId>
829+
<artifactId>postgresql</artifactId>
830+
</dependency>
831+
<dependency>
832+
<groupId>com.zaxxer</groupId>
833+
<artifactId>HikariCP</artifactId>
828834
</dependency>
829835

836+
<!--
830837
<dependency>
831838
<groupId>org.hibernate</groupId>
832839
<artifactId>hibernate-core</artifactId>
833840
</dependency>
834-
835841
<dependency>
836842
<groupId>org.jsoup</groupId>
837843
<artifactId>jsoup</artifactId>
838844
<scope>test</scope>
839845
</dependency>
846+
-->
840847

841848
<!-- scope test - without dependency-management in this pom.xml -->
842849
<dependency>
@@ -850,6 +857,7 @@
850857
<scope>test</scope>
851858
</dependency>
852859

860+
<!--
853861
<dependency>
854862
<groupId>org.hamcrest</groupId>
855863
<artifactId>hamcrest</artifactId>
@@ -875,6 +883,7 @@
875883
<artifactId>htmlunit</artifactId>
876884
<scope>test</scope>
877885
</dependency>
886+
-->
878887

879888
<!-- scm -->
880889
<dependency>
@@ -908,7 +917,6 @@
908917
<scope>provided</scope>
909918
</dependency>
910919

911-
<!-- maven plugins -->
912920
<dependency>
913921
<groupId>org.apache.maven.plugins</groupId>
914922
<artifactId>maven-enforcer-plugin</artifactId>
@@ -1040,6 +1048,7 @@
10401048
<type>maven-plugin</type>
10411049
<scope>provided</scope>
10421050
</dependency>
1051+
<!--
10431052
<dependency>
10441053
<groupId>org.apache.maven.doxia</groupId>
10451054
<artifactId>doxia-module-markdown</artifactId>
@@ -1050,6 +1059,7 @@
10501059
<artifactId>groovy-all</artifactId>
10511060
<scope>test</scope>
10521061
</dependency>
1062+
-->
10531063
</dependencies>
10541064

10551065
<build>

0 commit comments

Comments
 (0)