Skip to content

Commit

Permalink
Remove Servlet parent
Browse files Browse the repository at this point in the history
If I am reading the CI errors correctly, the use of Servlet parent is
preventing the TCK module from completing an independent release. We
need to release the API and the TCK separately.
  • Loading branch information
markt-asf committed Feb 28, 2024
1 parent e5da584 commit 9cacfc5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tck/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 1997, 2022 Oracle and/or its affiliates and others.
Copyright (c) 1997, 2024 Oracle and/or its affiliates and others.
All rights reserved.
This program and the accompanying materials are made available under the
Expand All @@ -22,11 +22,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>jakarta.servlet</groupId>
<artifactId>servlet-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.9</version>
<relativePath/>
</parent>

<groupId>jakarta.servlet</groupId>
<version>6.1.0-SNAPSHOT</version>
<artifactId>tck</artifactId>
<packaging>pom</packaging>

Expand Down

1 comment on commit 9cacfc5

@olamy
Copy link
Contributor

@olamy olamy commented on 9cacfc5 Feb 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes that was the idea. you should be able to

cd tck
mvn release:prepare release:perform .....

using a different version/tag from servlet api

Please sign in to comment.