Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

Commit 6ea811b

Browse files
authored
spring - generate metadata for configuration properties - change compiler to javac (#415) (#417)
1 parent 81f34d1 commit 6ea811b

1 file changed

Lines changed: 23 additions & 1 deletion

File tree

integrations/spring-boot/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<!-- minimal version is 2.1.0.RELEASE -->
16-
<org.springframework.boot.version>2.6.7</org.springframework.boot.version>
16+
<org.springframework.boot.version>2.7.3</org.springframework.boot.version>
1717
</properties>
1818

1919

@@ -89,6 +89,28 @@
8989
<skip>true</skip>
9090
</configuration>
9191
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-compiler-plugin</artifactId>
95+
<version>3.10.1</version>
96+
<configuration>
97+
<compilerId>javac</compilerId>
98+
</configuration>
99+
<executions>
100+
<execution>
101+
<id>process-annotations</id>
102+
<phase>generate-sources</phase>
103+
<goals>
104+
<goal>compile</goal>
105+
</goals>
106+
<configuration>
107+
<compilerArgs>
108+
<arg>-proc:only</arg>
109+
</compilerArgs>
110+
</configuration>
111+
</execution>
112+
</executions>
113+
</plugin>
92114
</plugins>
93115
</build>
94116

0 commit comments

Comments
 (0)