Skip to content

Commit

Permalink
[ACS-5597] Migrate project to Jakarta EE (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagdziarz authored Jul 13, 2023
1 parent f0ff0f4 commit 4dbb6a8
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.alfresco</groupId>
<artifactId>alfresco-super-pom</artifactId>
<version>9</version>
<version>12</version>
</parent>

<scm>
Expand All @@ -32,22 +32,30 @@
</distributionManagement>

<properties>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.build.sourceVersion>${java.version}</maven.build.sourceVersion>

<license-maven-plugin.version>2.0.1</license-maven-plugin.version>

<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<licenseName>community</licenseName>
</properties>

<dependencies>
<!-- provided dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
<version>3.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -56,6 +64,7 @@
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
<configuration>
<warName>ROOT</warName>
<attachClasses>true</attachClasses>
Expand All @@ -65,6 +74,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<organizationName>Alfresco Software Limited</organizationName>
Expand Down

0 comments on commit 4dbb6a8

Please sign in to comment.