|
4 | 4 |
|
5 | 5 | <groupId>com.spt-development</groupId> |
6 | 6 | <artifactId>spt-development-logging-spring-boot</artifactId> |
7 | | - <version>1.0.0</version> |
| 7 | + <version>2.0.0</version> |
8 | 8 |
|
9 | 9 | <name>logging-spring-boot</name> |
10 | 10 | <description>Library for integrating spt-development/spt-development-logging-spring into a Spring Boot application.</description> |
|
34 | 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
35 | 35 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
36 | 36 |
|
37 | | - <maven.compiler.source>15</maven.compiler.source> |
38 | | - <maven.compiler.target>15</maven.compiler.target> |
| 37 | + <maven.compiler.source>8</maven.compiler.source> |
| 38 | + <maven.compiler.target>8</maven.compiler.target> |
39 | 39 |
|
40 | 40 | <!-- Dependency versions --> |
41 | | - <slf4j.version>1.7.30</slf4j.version> |
42 | | - <spring.version>5.3.2</spring.version> |
43 | | - <spring-boot.version>2.4.1</spring-boot.version> |
44 | | - <spt-cid.version>1.1.0</spt-cid.version> |
45 | | - <spt-logging-spring.version>1.0.0</spt-logging-spring.version> |
46 | | - |
47 | | - <!-- Test dependency versions --> |
48 | | - <hamcrest.version>2.2</hamcrest.version> |
49 | | - <logback.version>1.2.3</logback.version> |
50 | | - <junit-jupiter.version>5.7.0</junit-jupiter.version> |
| 41 | + <spring-boot.version>2.5.4</spring-boot.version> |
| 42 | + <spt-cid.version>2.0.0</spt-cid.version> |
| 43 | + <spt-logging-spring.version>2.0.0</spt-logging-spring.version> |
51 | 44 |
|
52 | 45 | <!-- Plugin versions --> |
53 | 46 | <checkstyle.version>8.39</checkstyle.version> |
54 | | - <checkstyle-maven-plugin.version>3.1.1</checkstyle-maven-plugin.version> |
| 47 | + <checkstyle-maven-plugin.version>3.1.2</checkstyle-maven-plugin.version> |
55 | 48 | <findbugs-slf4j-bug-pattern.version>1.4.2</findbugs-slf4j-bug-pattern.version> |
56 | 49 | <findbugs-sec-bug-pattern.version>1.8.0</findbugs-sec-bug-pattern.version> |
57 | | - <jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> |
| 50 | + <jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version> |
58 | 51 | <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
59 | 52 | <maven-dependency-plugin.version>3.1.2</maven-dependency-plugin.version> |
60 | | - <maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version> |
| 53 | + <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version> |
61 | 54 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
62 | 55 | <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> |
63 | 56 | <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
64 | 57 | <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
65 | 58 | <nexus-staging-plugin.version>1.6.8</nexus-staging-plugin.version> |
66 | | - <pitest-maven.version>1.6.2</pitest-maven.version> |
67 | | - <spotbugs.version>4.2.0</spotbugs.version> |
| 59 | + <pitest-maven.version>1.6.9</pitest-maven.version> |
| 60 | + <spotbugs.version>4.2.3</spotbugs.version> |
68 | 61 | <versions-maven-plugin.version>2.8.1</versions-maven-plugin.version> |
69 | 62 |
|
70 | 63 | <!-- Plugin dependencies --> |
71 | | - <asm.version>9.0</asm.version> |
| 64 | + <asm.version>9.2</asm.version> |
| 65 | + <checkstyle.version>8.45.1</checkstyle.version> |
72 | 66 | <maven-dependency-analyzer.version>1.11.3</maven-dependency-analyzer.version> |
73 | | - <pitest-junit5-plugin.version>0.12</pitest-junit5-plugin.version> |
| 67 | + <pitest-junit5-plugin.version>0.14</pitest-junit5-plugin.version> |
74 | 68 | </properties> |
75 | 69 |
|
76 | 70 | <dependencyManagement> |
77 | 71 | <dependencies> |
78 | | - <!-- Spring dependencies --> |
79 | | - <dependency> |
80 | | - <groupId>org.springframework</groupId> |
81 | | - <artifactId>spring-context</artifactId> |
82 | | - <version>${spring.version}</version> |
83 | | - </dependency> |
84 | | - <dependency> |
85 | | - <groupId>org.springframework</groupId> |
86 | | - <artifactId>spring-core</artifactId> |
87 | | - <version>${spring.version}</version> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>org.springframework</groupId> |
91 | | - <artifactId>spring-jms</artifactId> |
92 | | - <version>${spring.version}</version> |
93 | | - </dependency> |
94 | | - <dependency> |
95 | | - <groupId>org.springframework</groupId> |
96 | | - <artifactId>spring-web</artifactId> |
97 | | - <version>${spring.version}</version> |
98 | | - </dependency> |
99 | | - <dependency> |
100 | | - <groupId>org.springframework.boot</groupId> |
101 | | - <artifactId>spring-boot-autoconfigure</artifactId> |
102 | | - <version>${spring-boot.version}</version> |
103 | | - </dependency> |
| 72 | + <!-- BOMs --> |
104 | 73 | <dependency> |
105 | 74 | <groupId>org.springframework.boot</groupId> |
106 | | - <artifactId>spring-boot-starter</artifactId> |
| 75 | + <artifactId>spring-boot-dependencies</artifactId> |
107 | 76 | <version>${spring-boot.version}</version> |
| 77 | + <type>pom</type> |
| 78 | + <scope>import</scope> |
108 | 79 | </dependency> |
109 | 80 |
|
110 | 81 | <!-- SPT dependencies --> |
|
118 | 89 | <artifactId>spt-development-logging-spring</artifactId> |
119 | 90 | <version>${spt-logging-spring.version}</version> |
120 | 91 | </dependency> |
121 | | - |
122 | | - <!-- Third-party dependencies --> |
123 | | - <dependency> |
124 | | - <groupId>org.slf4j</groupId> |
125 | | - <artifactId>slf4j-api</artifactId> |
126 | | - <version>${slf4j.version}</version> |
127 | | - </dependency> |
128 | | - |
129 | | - <!-- Test dependencies --> |
130 | | - <dependency> |
131 | | - <groupId>org.junit.jupiter</groupId> |
132 | | - <artifactId>junit-jupiter-api</artifactId> |
133 | | - <version>${junit-jupiter.version}</version> |
134 | | - <scope>test</scope> |
135 | | - </dependency> |
136 | | - <dependency> |
137 | | - <groupId>org.junit.jupiter</groupId> |
138 | | - <artifactId>junit-jupiter-engine</artifactId> |
139 | | - <version>${junit-jupiter.version}</version> |
140 | | - <scope>test</scope> |
141 | | - </dependency> |
142 | | - <dependency> |
143 | | - <groupId>org.hamcrest</groupId> |
144 | | - <artifactId>hamcrest</artifactId> |
145 | | - <version>${hamcrest.version}</version> |
146 | | - <scope>test</scope> |
147 | | - </dependency> |
148 | | - |
149 | | - <!-- Test dependencies not directly related to testing --> |
150 | | - <dependency> |
151 | | - <groupId>ch.qos.logback</groupId> |
152 | | - <artifactId>logback-classic</artifactId> |
153 | | - <version>${logback.version}</version> |
154 | | - <scope>test</scope> |
155 | | - </dependency> |
156 | 92 | </dependencies> |
157 | 93 | </dependencyManagement> |
158 | 94 |
|
|
0 commit comments