|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>com.bitwarden</groupId> |
6 | 6 | <artifactId>passwordless</artifactId> |
7 | | - <version>1.2.3</version> |
| 7 | + <version>1.2.4</version> |
8 | 8 | <name>passwordless</name> |
9 | 9 | <description>Passwordless.dev Java SDK</description> |
10 | 10 | <packaging>jar</packaging> |
|
43 | 43 | </developers> |
44 | 44 |
|
45 | 45 | <properties> |
46 | | - <java.version>1.8</java.version> |
| 46 | + <java.version>8</java.version> |
| 47 | + <lombok.version>1.18.38</lombok.version> |
47 | 48 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
48 | 49 | <sonar.organization>bitwarden</sonar.organization> |
49 | 50 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
|
102 | 103 | <dependency> |
103 | 104 | <groupId>org.projectlombok</groupId> |
104 | 105 | <artifactId>lombok</artifactId> |
105 | | - <version>1.18.36</version> |
| 106 | + <version>${lombok.version}</version> |
106 | 107 | <scope>provided</scope> |
107 | 108 | </dependency> |
108 | 109 | <!-- <dependency>--> |
|
156 | 157 | <artifactId>maven-compiler-plugin</artifactId> |
157 | 158 | <version>3.13.0</version> |
158 | 159 | <configuration> |
159 | | - <source>${java.version}</source> |
160 | | - <source>${java.version}</source> |
161 | | - <source>${java.version}</source> |
| 160 | + <release>${java.version}</release> |
162 | 161 | <showDeprecation>true</showDeprecation> |
163 | 162 | <showWarnings>true</showWarnings> |
| 163 | + <annotationProcessorPaths> |
| 164 | + <path> |
| 165 | + <groupId>org.projectlombok</groupId> |
| 166 | + <artifactId>lombok</artifactId> |
| 167 | + <version>${lombok.version}</version> |
| 168 | + </path> |
| 169 | + </annotationProcessorPaths> |
164 | 170 | </configuration> |
165 | 171 | </plugin> |
166 | 172 | <plugin> |
|
0 commit comments