Skip to content

Commit

Permalink
[RHPAM-4714] wildfly-elytron as provided (#2961)
Browse files Browse the repository at this point in the history
* wildfly-elytron as provided

* Added wildfly-elytron-auth-server as test dependency

* bundle wildfly-elytron-auth-server only for tomcat9 profile
  • Loading branch information
lampajr committed May 25, 2023
1 parent 52f4b1c commit 26e1901
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@
<artifactId>simpleclient_httpserver</artifactId>
</dependency>

<!-- Test - Wildfly Elytron -->
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron</artifactId>
<scope>provided</scope>
</dependency>

<!-- security -->
Expand Down Expand Up @@ -214,4 +215,21 @@

</dependencies>

<profiles>
<profile>
<id>tomcat9</id>
<activation>
<property>
<name>container.profile</name>
<value>tomcat9</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,13 @@
<artifactId>jakarta.json-api</artifactId>
<scope>test</scope>
</dependency>

<!-- Test - Wildfly Elytron -->
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@
<artifactId>wildfly-client-config</artifactId>
<scope>test</scope>
</dependency>

<!-- Test - Wildfly Elytron -->
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@
<artifactId>toxiproxy</artifactId>
<scope>test</scope>
</dependency>

<!-- Test - Wildfly Elytron -->
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>

<!-- Test - Wildfly Elytron -->
<dependency>
<groupId>org.wildfly.security</groupId>
<artifactId>wildfly-elytron-auth-server</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 26e1901

Please sign in to comment.