Skip to content

Commit

Permalink
Convert dependencies in parent to their management
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Apr 27, 2022
1 parent e0ab687 commit 59b4f19
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
8 changes: 8 additions & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,14 @@
<version>4.13</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.interceptor</groupId>
<artifactId>jakarta.interceptor-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
</dependency>
</dependencies>

<profiles>
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@
<module>api</module>
<module>tck</module>
</modules>


<dependencyManagement>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
Expand Down Expand Up @@ -153,4 +154,5 @@
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
32 changes: 32 additions & 0 deletions tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,38 @@
<version>${sigtest.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.ejb</groupId>
<artifactId>jakarta.ejb-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.interceptor</groupId>
<artifactId>jakarta.interceptor-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
</dependency>
</dependencies>
<build>
<resources>
Expand Down

0 comments on commit 59b4f19

Please sign in to comment.