Skip to content

Commit

Permalink
Merge pull request #1005 from apache/7.0.x/WW-5449-remove-vel-tools
Browse files Browse the repository at this point in the history
WW-5449 Make Velocity Tools dependency optional for Velocity plugin
  • Loading branch information
kusalk authored Jul 29, 2024
2 parents 6265455 + ca358c5 commit 817b0cd
Show file tree
Hide file tree
Showing 8 changed files with 310 additions and 234 deletions.
8 changes: 8 additions & 0 deletions apps/showcase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-plugin</artifactId>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-view-jakarta</artifactId>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-jsp-jakarta</artifactId>
</dependency>

<dependency>
<groupId>org.apache.struts</groupId>
Expand Down
10 changes: 10 additions & 0 deletions plugins/sitemesh/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@
<artifactId>struts2-velocity-plugin</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-view-jakarta</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-jsp-jakarta</artifactId>
<optional>true</optional>
</dependency>

</dependencies>
<properties>
Expand Down
3 changes: 2 additions & 1 deletion plugins/velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-view-jakarta</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-velocity-tools-jsp-jakarta</artifactId>
<optional>true</optional>
</dependency>

<dependency>
Expand Down
Loading

0 comments on commit 817b0cd

Please sign in to comment.