Skip to content

Commit

Permalink
feat: Upgrade To Tomcat 10 - Meeds-io/MIPs#76
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Dec 17, 2023
1 parent ceb1466 commit 445c694
Show file tree
Hide file tree
Showing 180 changed files with 2,536 additions and 5,417 deletions.
44 changes: 39 additions & 5 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@
<version>6.6.x-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.exoplatform.gatein.pc</groupId>
<artifactId>pc-api</artifactId>
<packaging>jar</packaging>
<name>GateIn - Portlet Container (api)</name>

<properties>
<exo.test.coverage.ratio>0.19</exo.test.coverage.ratio>
<exo.test.coverage.ratio>0.11</exo.test.coverage.ratio>
</properties>

<dependencies>
Expand All @@ -51,9 +50,14 @@
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -66,4 +70,34 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-classes</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>target/classes</outputDirectory>
<includes>javax/portlet/**</includes>
<excludes>javax/portlet/PortletResponse.class,javax/portlet/PortletRequest.class,javax/portlet/filter/PortletRequestWrapper.class,javax/portlet/filter/PortletResponseWrapper.class</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 445c694

Please sign in to comment.