|
14 | 14 | <java.version>8</java.version> |
15 | 15 | <maven.compiler.source>${java.version}</maven.compiler.source> |
16 | 16 | <maven.compiler.target>${java.version}</maven.compiler.target> |
| 17 | + <maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version> |
| 18 | + <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> |
| 19 | + <maven.assembly.plugin.version>3.7.1</maven.assembly.plugin.version> |
17 | 20 | </properties> |
18 | 21 |
|
19 | 22 | <developers> |
|
48 | 51 | <dependency> |
49 | 52 | <groupId>org.yaml</groupId> |
50 | 53 | <artifactId>snakeyaml</artifactId> |
51 | | - <version>1.15</version> |
| 54 | + <version>2.2</version> |
52 | 55 | </dependency> |
53 | 56 | <dependency> |
54 | 57 | <groupId>org.javassist</groupId> |
|
59 | 62 | <dependency> |
60 | 63 | <groupId>junit</groupId> |
61 | 64 | <artifactId>junit</artifactId> |
62 | | - <version>4.11</version> |
| 65 | + <version>4.13.2</version> |
63 | 66 | <type>jar</type> |
64 | 67 | <scope>test</scope> |
65 | 68 | </dependency> |
|
70 | 73 | <scope>test</scope> |
71 | 74 | </dependency> |
72 | 75 | <dependency> |
73 | | - <groupId>log4j</groupId> |
74 | | - <artifactId>log4j</artifactId> |
75 | | - <version>1.2.17</version> |
| 76 | + <groupId>ch.qos.reload4j</groupId> |
| 77 | + <artifactId>reload4j</artifactId> |
| 78 | + <version>1.2.26</version> |
76 | 79 | <type>jar</type> |
77 | 80 | </dependency> |
78 | 81 | </dependencies> |
|
82 | 85 | <plugin> |
83 | 86 | <groupId>org.apache.maven.plugins</groupId> |
84 | 87 | <artifactId>maven-surefire-plugin</artifactId> |
85 | | - <version>2.19</version> |
| 88 | + <version>${maven.surefire.plugin.version}</version> |
86 | 89 | <configuration> |
87 | 90 | <excludes> |
88 | 91 | <exclude>**/*Integration*Test.java</exclude> |
|
92 | 95 | <plugin> |
93 | 96 | <groupId>org.apache.maven.plugins</groupId> |
94 | 97 | <artifactId>maven-compiler-plugin</artifactId> |
95 | | - <version>2.5.1</version> |
| 98 | + <version>${maven.compiler.plugin.version}</version> |
96 | 99 | <configuration> |
97 | | - <source>8</source> |
98 | | - <target>8</target> |
| 100 | + <source>${maven.compiler.source}</source> |
| 101 | + <target>${maven.compiler.target}</target> |
99 | 102 | </configuration> |
100 | 103 | </plugin> |
101 | 104 |
|
102 | 105 | <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
103 | 107 | <artifactId>maven-assembly-plugin</artifactId> |
| 108 | + <version>${maven.assembly.plugin.version}</version> |
104 | 109 | <configuration> |
105 | 110 | <archive> |
106 | 111 | <manifestEntries> |
|
0 commit comments