|
20 | 20 |
|
21 | 21 | <dependencies> |
22 | 22 |
|
23 | | - <!-- Java Common Annotations --> |
24 | | - <dependency> |
25 | | - <groupId>javax.annotation</groupId> |
26 | | - <artifactId>javax.annotation-api</artifactId> |
27 | | - <optional>true</optional> |
28 | | - </dependency> |
29 | | - |
30 | 23 | <!-- Java API Dependencies --> |
31 | 24 | <dependency> |
32 | 25 | <groupId>com.google.code.findbugs</groupId> |
33 | 26 | <artifactId>jsr305</artifactId> |
34 | 27 | <optional>true</optional> |
35 | 28 | </dependency> |
36 | 29 |
|
37 | | - <!-- Apache Commons Dependencies --> |
38 | | - <dependency> |
39 | | - <groupId>org.apache.commons</groupId> |
40 | | - <artifactId>commons-lang3</artifactId> |
41 | | - </dependency> |
42 | | - |
43 | | - <dependency> |
44 | | - <groupId>commons-io</groupId> |
45 | | - <artifactId>commons-io</artifactId> |
46 | | - </dependency> |
47 | | - |
48 | 30 | <!-- Third-Party Dependencies --> |
| 31 | + <!-- SLF4j --> |
49 | 32 | <dependency> |
50 | 33 | <groupId>org.slf4j</groupId> |
51 | 34 | <artifactId>slf4j-api</artifactId> |
52 | 35 | <optional>true</optional> |
53 | 36 | </dependency> |
54 | 37 |
|
| 38 | + <!-- Apache Commons Logging --> |
| 39 | + <dependency> |
| 40 | + <groupId>commons-logging</groupId> |
| 41 | + <artifactId>commons-logging</artifactId> |
| 42 | + <optional>true</optional> |
| 43 | + </dependency> |
| 44 | + |
55 | 45 | <!-- Testing --> |
56 | 46 | <dependency> |
57 | 47 | <groupId>org.junit.jupiter</groupId> |
|
78 | 68 | <scope>test</scope> |
79 | 69 | </dependency> |
80 | 70 |
|
| 71 | + <!-- Java Common Annotations --> |
| 72 | + <dependency> |
| 73 | + <groupId>javax.annotation</groupId> |
| 74 | + <artifactId>javax.annotation-api</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <!-- Spring --> |
81 | 79 | <dependency> |
82 | 80 | <groupId>org.springframework</groupId> |
83 | 81 | <artifactId>spring-core</artifactId> |
|
112 | 110 | <artifactId>javax.annotation-api</artifactId> |
113 | 111 | </dependency> |
114 | 112 | </dependencies> |
| 113 | + <build> |
| 114 | + <plugins> |
| 115 | + <plugin> |
| 116 | + <groupId>org.apache.maven.plugins</groupId> |
| 117 | + <artifactId>maven-surefire-plugin</artifactId> |
| 118 | + <configuration> |
| 119 | + <argLine> |
| 120 | + --illegal-access=permit |
| 121 | + --add-opens java.base/java.lang.invoke=ALL-UNNAMED |
| 122 | + </argLine> |
| 123 | + </configuration> |
| 124 | + </plugin> |
| 125 | + </plugins> |
| 126 | + </build> |
115 | 127 | </profile> |
116 | 128 | </profiles> |
117 | 129 |
|
|
0 commit comments