|
22 | 22 | <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version> |
23 | 23 | <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
24 | 24 | <maven-deploy-plugin.version>2.7</maven-deploy-plugin.version> |
| 25 | + <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
25 | 26 | <maven.compiler.source>11</maven.compiler.source> |
26 | 27 | <maven.compiler.target>11</maven.compiler.target> |
| 28 | + <maven.compiler.release>11</maven.compiler.release> |
27 | 29 | <maven.deploy.skip>true</maven.deploy.skip> |
28 | 30 | <!-- |
29 | 31 | manually declare durabletask-client's jackson dependencies for workflows sdk |
|
114 | 116 | <build> |
115 | 117 | <pluginManagement> |
116 | 118 | <plugins> |
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-compiler-plugin</artifactId> |
| 122 | + <version>${maven-compiler-plugin.version}</version> |
| 123 | + <configuration> |
| 124 | + <source>${maven.compiler.source}</source> |
| 125 | + <target>${maven.compiler.target}</target> |
| 126 | + <release>${maven.compiler.release}</release> |
| 127 | + </configuration> |
| 128 | + </plugin> |
117 | 129 | <plugin> |
118 | 130 | <groupId>org.apache.maven.plugins</groupId> |
119 | 131 | <artifactId>maven-surefire-plugin</artifactId> |
|
152 | 164 | </execution> |
153 | 165 | </executions> |
154 | 166 | </plugin> |
155 | | - <plugin> |
156 | | - <groupId>org.codehaus.mojo</groupId> |
157 | | - <artifactId>animal-sniffer-maven-plugin</artifactId> |
158 | | - <version>1.23</version> |
159 | | - <configuration> |
160 | | - <signature> |
161 | | - <groupId>org.codehaus.mojo.signature</groupId> |
162 | | - <artifactId>java18</artifactId> |
163 | | - <version>1.0</version> |
164 | | - </signature> |
165 | | - <skip>false</skip> |
166 | | - </configuration> |
167 | | - <executions> |
168 | | - <execution> |
169 | | - <id>enforce-java-8-compatibility</id> |
170 | | - <phase>process-classes</phase> |
171 | | - <goals> |
172 | | - <goal>check</goal> |
173 | | - </goals> |
174 | | - </execution> |
175 | | - </executions> |
176 | | - </plugin> |
177 | 167 | <plugin> |
178 | 168 | <groupId>org.apache.maven.plugins</groupId> |
179 | 169 | <artifactId>maven-gpg-plugin</artifactId> |
|
0 commit comments