Skip to content

Commit aaa5e32

Browse files
committed
## 2.3.32
* Issue #317 switch Context is broken * Issue #318 Broken: http://localhost:8080/taskstate/task/1153/changeorderto/1051 * Issue #319 groovy-all Warning during startup * Issue #320 warning: SLF4J: Class path contains multiple SLF4J bindings. * Issue #321 jar is too fat for deployment on heroku
1 parent 70eef40 commit aaa5e32

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

etc/TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ Caused by: org.postgresql.util.PSQLException: ERROR: relation "spring_session" d
183183
* Issue #318 Broken: http://localhost:8080/taskstate/task/1153/changeorderto/1051
184184
* Issue #319 groovy-all Warning during startup
185185
* Issue #320 warning: SLF4J: Class path contains multiple SLF4J bindings.
186+
* Issue #321 jar is too fat for deployment on heroku
186187

187188
## 2.3.33
188189
* Issue #234 Taskstate: Task Edit Form -> change Project via DropDown

pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,112 +375,131 @@
375375
<artifactId>maven-enforcer-plugin</artifactId>
376376
<version>${maven-enforcer-plugin.version}</version>
377377
<type>maven-plugin</type>
378+
<scope>compile</scope>
378379
</dependency>
379380
<dependency>
380381
<groupId>org.apache.maven.plugins</groupId>
381382
<artifactId>maven-invoker-plugin</artifactId>
382383
<version>${maven-invoker-plugin.version}</version>
383384
<type>maven-plugin</type>
385+
<scope>compile</scope>
384386
</dependency>
385387
<dependency>
386388
<groupId>com.dkanejs.maven.plugins</groupId>
387389
<artifactId>docker-compose-maven-plugin</artifactId>
388390
<version>${docker-compose-maven-plugin.version}</version>
389391
<type>maven-plugin</type>
392+
<scope>compile</scope>
390393
</dependency>
391394
<dependency>
392395
<groupId>org.apache.maven.plugins</groupId>
393396
<artifactId>maven-clean-plugin</artifactId>
394397
<version>${maven-clean-plugin.version}</version>
395398
<type>maven-plugin</type>
399+
<scope>compile</scope>
396400
</dependency>
397401
<dependency>
398402
<groupId>org.apache.maven.plugins</groupId>
399403
<artifactId>maven-dependency-plugin</artifactId>
400404
<version>${maven-dependency-plugin.version}</version>
401405
<type>maven-plugin</type>
406+
<scope>compile</scope>
402407
</dependency>
403408
<dependency>
404409
<groupId>org.apache.maven.plugins</groupId>
405410
<artifactId>maven-compiler-plugin</artifactId>
406411
<version>${maven-compiler-plugin.version}</version>
407412
<type>maven-plugin</type>
413+
<scope>compile</scope>
408414
</dependency>
409415
<dependency>
410416
<groupId>org.springframework.boot</groupId>
411417
<artifactId>spring-boot-maven-plugin</artifactId>
412418
<version>${spring-boot-maven-plugin.version}</version>
413419
<type>maven-plugin</type>
420+
<scope>compile</scope>
414421
</dependency>
415422

416423
<dependency>
417424
<groupId>org.apache.maven.plugins</groupId>
418425
<artifactId>maven-site-plugin</artifactId>
419426
<version>${maven-site-plugin.version}</version>
420427
<type>maven-plugin</type>
428+
<scope>compile</scope>
421429
</dependency>
422430
<dependency>
423431
<groupId>org.apache.maven.plugins</groupId>
424432
<artifactId>maven-project-info-reports-plugin</artifactId>
425433
<version>${maven-project-info-reports-plugin.version}</version>
426434
<type>maven-plugin</type>
435+
<scope>compile</scope>
427436
</dependency>
428437
<dependency>
429438
<groupId>org.apache.maven.plugins</groupId>
430439
<artifactId>maven-jxr-plugin</artifactId>
431440
<version>${maven-jxr-plugin.version}</version>
432441
<type>maven-plugin</type>
442+
<scope>compile</scope>
433443
</dependency>
434444
<dependency>
435445
<groupId>org.apache.maven.plugins</groupId>
436446
<artifactId>maven-checkstyle-plugin</artifactId>
437447
<version>${maven-checkstyle-plugin.version}</version>
438448
<type>maven-plugin</type>
449+
<scope>compile</scope>
439450
</dependency>
440451
<dependency>
441452
<groupId>com.github.spotbugs</groupId>
442453
<artifactId>spotbugs-maven-plugin</artifactId>
443454
<version>${spotbugs-maven-plugin.version}</version>
444455
<type>maven-plugin</type>
456+
<scope>compile</scope>
445457
</dependency>
446458
<dependency>
447459
<groupId>org.apache.maven.plugins</groupId>
448460
<artifactId>maven-pmd-plugin</artifactId>
449461
<version>${maven-pmd-plugin.version}</version>
450462
<type>maven-plugin</type>
463+
<scope>compile</scope>
451464
</dependency>
452465
<dependency>
453466
<groupId>org.apache.maven.plugins</groupId>
454467
<artifactId>maven-surefire-plugin</artifactId>
455468
<version>${maven-surefire-plugin.version}</version>
456469
<type>maven-plugin</type>
470+
<scope>test</scope>
457471
</dependency>
458472
<dependency>
459473
<groupId>org.apache.maven.plugins</groupId>
460474
<artifactId>maven-surefire-report-plugin</artifactId>
461475
<version>${maven-surefire-report-plugin.version}</version>
462476
<type>maven-plugin</type>
477+
<scope>test</scope>
463478
</dependency>
464479
<dependency>
465480
<groupId>org.apache.maven.plugins</groupId>
466481
<artifactId>maven-release-plugin</artifactId>
467482
<version>${maven-release-plugin.version}</version>
468483
<type>maven-plugin</type>
484+
<scope>compile</scope>
469485
</dependency>
470486
<dependency>
471487
<groupId>org.apache.maven.doxia</groupId>
472488
<artifactId>doxia-module-markdown</artifactId>
473489
<version>${doxia-module-markdown.version}</version>
490+
<scope>compile</scope>
474491
</dependency>
475492
<dependency>
476493
<groupId>org.xmlunit</groupId>
477494
<artifactId>xmlunit-core</artifactId>
478495
<version>${xmlunit.version}</version>
496+
<scope>test</scope>
479497
</dependency>
480498
<dependency>
481499
<groupId>net.sourceforge.htmlunit</groupId>
482500
<artifactId>htmlunit</artifactId>
483501
<version>${htmlunit.version}</version>
502+
<scope>test</scope>
484503
</dependency>
485504
</dependencies>
486505
</dependencyManagement>
@@ -645,91 +664,110 @@
645664
<scope>test</scope>
646665
</dependency>
647666

667+
<!--
648668
<dependency>
649669
<groupId>org.apache.maven.plugins</groupId>
650670
<artifactId>maven-enforcer-plugin</artifactId>
651671
<type>maven-plugin</type>
672+
<scope>compile</scope>
652673
</dependency>
653674
<dependency>
654675
<groupId>org.apache.maven.plugins</groupId>
655676
<artifactId>maven-invoker-plugin</artifactId>
656677
<type>maven-plugin</type>
678+
<scope>compile</scope>
657679
</dependency>
658680
<dependency>
659681
<groupId>com.dkanejs.maven.plugins</groupId>
660682
<artifactId>docker-compose-maven-plugin</artifactId>
661683
<type>maven-plugin</type>
684+
<scope>compile</scope>
662685
</dependency>
663686
<dependency>
664687
<groupId>org.apache.maven.plugins</groupId>
665688
<artifactId>maven-clean-plugin</artifactId>
666689
<type>maven-plugin</type>
690+
<scope>compile</scope>
667691
</dependency>
668692
<dependency>
669693
<groupId>org.apache.maven.plugins</groupId>
670694
<artifactId>maven-dependency-plugin</artifactId>
671695
<type>maven-plugin</type>
696+
<scope>compile</scope>
672697
</dependency>
673698
<dependency>
674699
<groupId>org.apache.maven.plugins</groupId>
675700
<artifactId>maven-compiler-plugin</artifactId>
676701
<type>maven-plugin</type>
702+
<scope>compile</scope>
677703
</dependency>
678704
<dependency>
679705
<groupId>org.springframework.boot</groupId>
680706
<artifactId>spring-boot-maven-plugin</artifactId>
681707
<type>maven-plugin</type>
708+
<scope>compile</scope>
682709
</dependency>
683710
684711
<dependency>
685712
<groupId>org.apache.maven.plugins</groupId>
686713
<artifactId>maven-site-plugin</artifactId>
687714
<type>maven-plugin</type>
715+
<scope>compile</scope>
688716
</dependency>
689717
<dependency>
690718
<groupId>org.apache.maven.plugins</groupId>
691719
<artifactId>maven-project-info-reports-plugin</artifactId>
692720
<type>maven-plugin</type>
721+
<scope>compile</scope>
693722
</dependency>
694723
<dependency>
695724
<groupId>org.apache.maven.plugins</groupId>
696725
<artifactId>maven-jxr-plugin</artifactId>
697726
<type>maven-plugin</type>
727+
<scope>compile</scope>
698728
</dependency>
699729
<dependency>
700730
<groupId>org.apache.maven.plugins</groupId>
701731
<artifactId>maven-checkstyle-plugin</artifactId>
702732
<type>maven-plugin</type>
733+
<scope>compile</scope>
703734
</dependency>
704735
<dependency>
705736
<groupId>com.github.spotbugs</groupId>
706737
<artifactId>spotbugs-maven-plugin</artifactId>
707738
<type>maven-plugin</type>
739+
<scope>compile</scope>
708740
</dependency>
709741
<dependency>
710742
<groupId>org.apache.maven.plugins</groupId>
711743
<artifactId>maven-pmd-plugin</artifactId>
712744
<type>maven-plugin</type>
745+
<scope>compile</scope>
713746
</dependency>
714747
<dependency>
715748
<groupId>org.apache.maven.plugins</groupId>
716749
<artifactId>maven-surefire-plugin</artifactId>
717750
<type>maven-plugin</type>
751+
<scope>compile</scope>
718752
</dependency>
719753
<dependency>
720754
<groupId>org.apache.maven.plugins</groupId>
721755
<artifactId>maven-surefire-report-plugin</artifactId>
722756
<type>maven-plugin</type>
757+
<scope>compile</scope>
723758
</dependency>
724759
<dependency>
725760
<groupId>org.apache.maven.plugins</groupId>
726761
<artifactId>maven-release-plugin</artifactId>
727762
<type>maven-plugin</type>
763+
<scope>compile</scope>
728764
</dependency>
729765
<dependency>
730766
<groupId>org.apache.maven.doxia</groupId>
731767
<artifactId>doxia-module-markdown</artifactId>
768+
<scope>compile</scope>
732769
</dependency>
770+
-->
733771
</dependencies>
734772

735773
<build>
@@ -776,21 +814,25 @@
776814
<groupId>net.sourceforge.pmd</groupId>
777815
<artifactId>pmd-core</artifactId>
778816
<version>${pmdVersion}</version>
817+
<scope>compile</scope>
779818
</dependency>
780819
<dependency>
781820
<groupId>net.sourceforge.pmd</groupId>
782821
<artifactId>pmd-java</artifactId>
783822
<version>${pmdVersion}</version>
823+
<scope>compile</scope>
784824
</dependency>
785825
<dependency>
786826
<groupId>net.sourceforge.pmd</groupId>
787827
<artifactId>pmd-javascript</artifactId>
788828
<version>${pmdVersion}</version>
829+
<scope>compile</scope>
789830
</dependency>
790831
<dependency>
791832
<groupId>net.sourceforge.pmd</groupId>
792833
<artifactId>pmd-jsp</artifactId>
793834
<version>${pmdVersion}</version>
835+
<scope>compile</scope>
794836
</dependency>
795837
</dependencies>
796838
</plugin>
@@ -818,41 +860,49 @@
818860
<groupId>org.apache.maven.doxia</groupId>
819861
<artifactId>doxia-module-markdown</artifactId>
820862
<version>${doxia-module.version}</version>
863+
<scope>compile</scope>
821864
</dependency>
822865
<dependency>
823866
<groupId>org.apache.maven.doxia</groupId>
824867
<artifactId>doxia-module-itext</artifactId>
825868
<version>${doxia-module.version}</version>
869+
<scope>compile</scope>
826870
</dependency>
827871
<dependency>
828872
<groupId>org.apache.maven.doxia</groupId>
829873
<artifactId>doxia-module-latex</artifactId>
830874
<version>${doxia-module.version}</version>
875+
<scope>compile</scope>
831876
</dependency>
832877
<dependency>
833878
<groupId>org.apache.maven.doxia</groupId>
834879
<artifactId>doxia-module-rtf</artifactId>
835880
<version>${doxia-module.version}</version>
881+
<scope>compile</scope>
836882
</dependency>
837883
<dependency>
838884
<groupId>org.apache.maven.doxia</groupId>
839885
<artifactId>doxia-module-xdoc</artifactId>
840886
<version>${doxia-module.version}</version>
887+
<scope>compile</scope>
841888
</dependency>
842889
<dependency>
843890
<groupId>org.apache.maven.doxia</groupId>
844891
<artifactId>doxia-skin-model</artifactId>
845892
<version>${doxia-module.version}</version>
893+
<scope>compile</scope>
846894
</dependency>
847895
<dependency>
848896
<groupId>org.apache.maven.doxia</groupId>
849897
<artifactId>doxia-site-renderer</artifactId>
850898
<version>${doxia-module.version}</version>
899+
<scope>compile</scope>
851900
</dependency>
852901
<dependency>
853902
<groupId>org.apache.maven.doxia</groupId>
854903
<artifactId>doxia-test-docs</artifactId>
855904
<version>${doxia-module.version}</version>
905+
<scope>compile</scope>
856906
</dependency>
857907
</dependencies>
858908
</plugin>

0 commit comments

Comments
 (0)