Skip to content

Commit

Permalink
fix: java version is too low
Browse files Browse the repository at this point in the history
  • Loading branch information
DDSRem committed Jul 24, 2024
1 parent 4978446 commit 87ede42
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions xiaoya_proxy/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
Expand Down
9 changes: 9 additions & 0 deletions xiaoya_proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 87ede42

Please sign in to comment.