Skip to content

Commit

Permalink
Merge branch 'branches/rudder/8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Aug 30, 2024
2 parents bbd387b + 8060d02 commit 2f1978f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 31 deletions.
6 changes: 2 additions & 4 deletions api-authorizations/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@

<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>

Expand Down
6 changes: 2 additions & 4 deletions auth-backends/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,8 @@
<version>${spring-security-version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<!-- undeclared needed dependency - be careful, check compat of nimbus-jose with spring version too! -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ import com.normation.zio.*
import com.typesafe.config.ConfigException
import java.net.URI
import java.util
import javax.servlet.http.HttpServletRequest
import javax.servlet.http.HttpServletResponse
import jakarta.servlet.http.HttpServletRequest
import jakarta.servlet.http.HttpServletResponse
import org.joda.time.DateTime
import org.springframework.context.ApplicationContext
import org.springframework.context.ApplicationContextAware
Expand Down
6 changes: 2 additions & 4 deletions branding/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@
<dependencies>
<!-- Add other plugin specific dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>

Expand Down
6 changes: 2 additions & 4 deletions change-validation/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,8 @@
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>

Expand Down
6 changes: 2 additions & 4 deletions datasources/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@
<dependencies>
<!-- common data definition for plugins -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>

<!-- Test: rudder -->
Expand Down
6 changes: 2 additions & 4 deletions openscap/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion plugins-common/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
<dependency><groupId>io.github.java-diff-utils</groupId><artifactId>java-diff-utils</artifactId><scope>provided</scope></dependency>
<dependency><groupId>io.scalaland</groupId><artifactId>chimney_${scala-binary-version}</artifactId><scope>provided</scope><version>${chimney-version}</version></dependency>
<dependency><groupId>io.scalaland</groupId><artifactId>chimney-macro-commons_${scala-version}</artifactId><scope>provided</scope><version>${chimney-version}</version></dependency>
<dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><scope>provided</scope></dependency>
<dependency><groupId>jakarta.servlet</groupId><artifactId>jakarta.servlet-api</artifactId><scope>provided</scope>><version>${servlet-version}</version></dependency>
<dependency><groupId>joda-time</groupId><artifactId>joda-time</artifactId><scope>provided</scope><version>${jodatime-version}</version></dependency>
<dependency><groupId>net.java.dev.jna</groupId><artifactId>jna</artifactId><scope>provided</scope></dependency>
<dependency><groupId>net.liftweb</groupId><artifactId>lift-actor_${scala-binary-version}</artifactId><scope>provided</scope><version>${lift-version}</version></dependency>
Expand Down
6 changes: 2 additions & 4 deletions scale-out-relay/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@
<dependencies>
<!-- Add other plugin specific dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>

Expand Down

0 comments on commit 2f1978f

Please sign in to comment.