|
84 | 84 | </dependencies> |
85 | 85 |
|
86 | 86 | <build> |
| 87 | + <plugins> |
| 88 | + <!-- Compiler plugin with Lombok --> |
| 89 | + <plugin> |
| 90 | + <groupId>org.apache.maven.plugins</groupId> |
| 91 | + <artifactId>maven-compiler-plugin</artifactId> |
| 92 | + <version>3.13.0</version> |
| 93 | + <configuration> |
| 94 | + <annotationProcessorPaths> |
| 95 | + <path> |
| 96 | + <groupId>org.projectlombok</groupId> |
| 97 | + <artifactId>lombok</artifactId> |
| 98 | + <version>${lombok.version}</version> |
| 99 | + </path> |
| 100 | + </annotationProcessorPaths> |
| 101 | + </configuration> |
| 102 | + </plugin> |
| 103 | + |
| 104 | + <!-- Deploy plugin configuration --> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-deploy-plugin</artifactId> |
| 108 | + <version>3.1.2</version> |
| 109 | + <configuration> |
| 110 | + <skip>false</skip> |
| 111 | + </configuration> |
| 112 | + </plugin> |
| 113 | + </plugins> |
| 114 | + |
87 | 115 | <pluginManagement> |
88 | 116 | <plugins> |
89 | 117 | <!-- clean lifecycle --> |
|
98 | 126 | <version>3.3.1</version> |
99 | 127 | </plugin> |
100 | 128 |
|
101 | | - <!-- compiler plugin with Lombok annotation processor --> |
102 | | - <plugin> |
103 | | - <groupId>org.apache.maven.plugins</groupId> |
104 | | - <artifactId>maven-compiler-plugin</artifactId> |
105 | | - <version>3.13.0</version> |
106 | | - <configuration> |
107 | | - <annotationProcessorPaths> |
108 | | - <path> |
109 | | - <groupId>org.projectlombok</groupId> |
110 | | - <artifactId>lombok</artifactId> |
111 | | - <version>${lombok.version}</version> |
112 | | - </path> |
113 | | - </annotationProcessorPaths> |
114 | | - </configuration> |
115 | | - </plugin> |
116 | | - |
117 | 129 | <!-- surefire plugin for tests --> |
118 | 130 | <plugin> |
119 | 131 | <artifactId>maven-surefire-plugin</artifactId> |
|
132 | 144 | <version>3.1.2</version> |
133 | 145 | </plugin> |
134 | 146 |
|
135 | | - <!-- deploy plugin --> |
136 | | - <plugin> |
137 | | - <artifactId>maven-deploy-plugin</artifactId> |
138 | | - <version>3.1.2</version> |
139 | | - </plugin> |
140 | | - |
141 | 147 | <!-- site lifecycle --> |
142 | 148 | <plugin> |
143 | 149 | <artifactId>maven-site-plugin</artifactId> |
|
0 commit comments