aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorshifujun <shifujun@foxmail.com>2023-12-12 14:10:23 +0800
committershifujun <shifujun@foxmail.com>2023-12-12 14:10:23 +0800
commit9dbf9e030b98245226a6ea4e9a005b2b62f6036c (patch)
tree7237c9da54cc883fe73ca59b833c260891974012 /pom.xml
parentfbd20b1e112b3e74f6d970a8ced839e8ee0bab87 (diff)
downloadjavassist-9dbf9e030b98245226a6ea4e9a005b2b62f6036c.tar.gz
javassist-9dbf9e030b98245226a6ea4e9a005b2b62f6036c.zip
Minimal changes make IDEA 2023.2 work out-of-box
Correct maven-compiler-plugin JDK version for IDEA import Compiler bytecode version. Remove JvstTestRoot's constructor, otherwise IDEA cannot show Run icon aside testMethod. Another way is adding suite() static method to those classes. Now we can clone and open project with IDEA 2023.2. Debug single test case with IDEA is very useful.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index a604e166..42106d56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>11</source>
+ <target>11</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>