Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor codegen unit test #878

Merged
merged 5 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change pom
  • Loading branch information
wodiwudi committed Aug 19, 2024
commit f4c3274efaf3e74315e41d7713a9ad5488ecf84f
20 changes: 1 addition & 19 deletions jcommon/codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>1.6.0-jdk21-SNAPSHOT</version>
</parent>
<artifactId>codegen</artifactId>
<version>1.6.2-jdk17-SNAPSHOT</version>
<version>1.6.0-jdk21-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
Expand Down Expand Up @@ -85,22 +85,4 @@
<version>3.9.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
<compilerArguments>
<sourcepath>${project.basedir}/src/main/java</sourcepath>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions jcommon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
<source>20</source>
<target>20</target>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
<compilerArguments>
Expand Down