Skip to content

Commit

Permalink
Merge pull request mybatis#199 from hazendaz/master
Browse files Browse the repository at this point in the history
[pom] Allow support for freemarker 2.3.33 as it has one class listed …
  • Loading branch information
hazendaz authored Jun 15, 2024
2 parents 0360114 + 31226c7 commit 24f3ab9
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>44</version>
<relativePath/>
<relativePath />
</parent>

<groupId>org.mybatis.scripting</groupId>
Expand Down Expand Up @@ -91,7 +91,7 @@
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.32</version>
<version>2.3.33</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -114,4 +114,23 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<rules>
<enforceBytecodeVersion>
<excludes>
<!-- Allow specific java 16 code to be allowed at 'freemarker/core/_Java16Impl' -->
<exclude>org.freemarker:freemarker</exclude>
</excludes>
</enforceBytecodeVersion>
</rules>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 24f3ab9

Please sign in to comment.