|
25 | 25 | </licenses> |
26 | 26 |
|
27 | 27 | <profiles> |
28 | | - <profile> |
29 | | - <id>crawler</id> |
30 | | - <build> |
31 | | - <plugins> |
32 | | - <plugin> |
33 | | - <groupId>org.codehaus.mojo</groupId> |
34 | | - <artifactId>exec-maven-plugin</artifactId> |
35 | | - <version>${version.exec.maven}</version> |
36 | | - <executions> |
37 | | - <execution> |
38 | | - <phase>validate</phase> |
39 | | - <goals> |
40 | | - <goal>java</goal> |
41 | | - </goals> |
42 | | - <configuration> |
43 | | - <mainClass>org.owasp.benchmark.tools.BenchmarkCrawler</mainClass> |
44 | | - <arguments> |
45 | | - <argument>${addlArg1}</argument> <!-- -f here --> |
46 | | - <argument>${addlArg2}</argument> <!-- filename here --> |
47 | | - </arguments> |
48 | | - </configuration> |
49 | | - </execution> |
50 | | - </executions> |
51 | | - </plugin> |
52 | | - </plugins> |
53 | | - </build> |
54 | | - </profile> |
55 | | - |
56 | | - <profile> |
57 | | - <id>scorecard</id> |
58 | | - <build> |
59 | | - <plugins> |
60 | | - <plugin> |
61 | | - <groupId>org.codehaus.mojo</groupId> |
62 | | - <artifactId>exec-maven-plugin</artifactId> |
63 | | - <version>${version.exec.maven}</version> |
64 | | - <executions> |
65 | | - <execution> |
66 | | - <phase>validate</phase> |
67 | | - <goals> |
68 | | - <goal>java</goal> |
69 | | - </goals> |
70 | | - <configuration> |
71 | | - <mainClass>org.owasp.benchmark.score.BenchmarkScore</mainClass> |
72 | | - <systemProperties> |
73 | | - <systemProperty> |
74 | | - <key>java.awt.headless</key> |
75 | | - <value>true</value> |
76 | | - </systemProperty> |
77 | | - </systemProperties> |
78 | | - </configuration> |
79 | | - </execution> |
80 | | - </executions> |
81 | | - </plugin> |
82 | | - </plugins> |
83 | | - </build> |
84 | | - </profile> |
85 | 28 |
|
86 | 29 | <profile> |
87 | 30 | <id>findsecbugs</id> |
|
655 | 598 | </build> |
656 | 599 | </profile> |
657 | 600 |
|
658 | | - <profile> |
659 | | - <id>time</id> |
660 | | - <build> |
661 | | - <plugins> |
662 | | - <plugin> |
663 | | - <groupId>org.codehaus.mojo</groupId> |
664 | | - <artifactId>exec-maven-plugin</artifactId> |
665 | | - <version>${version.exec.maven}</version> |
666 | | - <executions> |
667 | | - <execution> |
668 | | - <phase>validate</phase> |
669 | | - <goals> |
670 | | - <goal>java</goal> |
671 | | - </goals> |
672 | | - <configuration> |
673 | | - <mainClass>org.owasp.benchmark.score.WriteTime</mainClass> |
674 | | - </configuration> |
675 | | - </execution> |
676 | | - </executions> |
677 | | - </plugin> |
678 | | - </plugins> |
679 | | - </build> |
680 | | - </profile> |
681 | | - |
682 | 601 | </profiles> |
683 | 602 |
|
684 | 603 | <dependencies> |
|
709 | 628 | <version>1.4</version> |
710 | 629 | </dependency> |
711 | 630 |
|
712 | | - <dependency> |
713 | | - <groupId>commons-io</groupId> |
714 | | - <artifactId>commons-io</artifactId> |
715 | | - <!-- latest is: <version>2.7</version>, but 2.7+ requires Java 8 --> |
716 | | - <version>2.6</version> |
717 | | - </dependency> |
718 | | - |
719 | 631 | <dependency> |
720 | 632 | <groupId>commons-lang</groupId> |
721 | 633 | <artifactId>commons-lang</artifactId> |
|
730 | 642 | <version>1.7.32</version> |
731 | 643 | </dependency> |
732 | 644 |
|
733 | | - <dependency> |
734 | | - <groupId>org.apache.commons</groupId> |
735 | | - <artifactId>commons-csv</artifactId> |
736 | | - <!-- Latest is: <version>1.8</version>, but 1.7+ requires Java 8 --> |
737 | | - <version>1.6</version> |
738 | | - </dependency> |
739 | | - |
740 | | - <dependency> |
741 | | - <groupId>org.apache.commons</groupId> |
742 | | - <artifactId>commons-lang3</artifactId> |
743 | | - <!-- <version>3.10</version> is latest, but 3.9+ requires Java 8 --> |
744 | | - <version>3.8.1</version> |
745 | | - </dependency> |
746 | | - |
747 | 645 | <dependency> |
748 | 646 | <groupId>org.apache.directory.server</groupId> |
749 | 647 | <artifactId>apacheds-core</artifactId> |
|
902 | 800 | <version>2.3.6</version> |
903 | 801 | </dependency> |
904 | 802 |
|
905 | | - <dependency> |
906 | | - <groupId>org.jfree</groupId> |
907 | | - <artifactId>jcommon</artifactId> |
908 | | - <version>1.0.24</version> |
909 | | - </dependency> |
910 | | - |
911 | | - <dependency> |
912 | | - <groupId>org.jfree</groupId> |
913 | | - <artifactId>jfreechart</artifactId> |
914 | | - <!-- <version>1.5.1</version> This is latest version, but requires Java 8. 1.5.0 is last version to support Java 7. --> |
915 | | - <version>1.5.0</version> |
916 | | - </dependency> |
917 | | - |
918 | | - <dependency> |
919 | | - <groupId>org.json</groupId> |
920 | | - <artifactId>json</artifactId> |
921 | | - <version>20201115</version> |
922 | | - </dependency> |
923 | | - |
924 | 803 | <dependency> |
925 | 804 | <groupId>org.owasp.esapi</groupId> |
926 | 805 | <artifactId>esapi</artifactId> |
|
958 | 837 | <version>${version.springframework}</version> |
959 | 838 | </dependency> |
960 | 839 |
|
961 | | - <dependency> |
962 | | - <groupId>org.yaml</groupId> |
963 | | - <artifactId>snakeyaml</artifactId> |
964 | | - <version>1.29</version> |
965 | | - </dependency> |
966 | | - |
967 | 840 | <dependency> |
968 | 841 | <groupId>xml-apis</groupId> |
969 | 842 | <artifactId>xml-apis</artifactId> |
|
0 commit comments