Skip to content

Commit

Permalink
Move EE dependency version properties to parent pom (#787)
Browse files Browse the repository at this point in the history
- Move EE dependency version properties to parent pom, fixes #786
- Set version to 4.1.0-SNAPSHOT

---------

Signed-off-by: Scott M Stark <starksm64@gmail.com>
  • Loading branch information
starksm64 committed Mar 1, 2024
1 parent d169732 commit 118a4d7
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -1,3 +1,6 @@
<!--
SPDX-License-Identifier: Apache-2.0
-->
---
name: Bug report
about: Create a report to help us improve
Expand Down
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/compatibility-certification-request.md
@@ -1,3 +1,6 @@
<!--
SPDX-License-Identifier: Apache-2.0
-->
---
name: Compatibility certification request
about: Request certification of a compatibile implementation of Jakarta EE
Expand Down
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -1,3 +1,6 @@
<!--
SPDX-License-Identifier: Apache-2.0
-->
---
name: Feature request
about: Suggest an idea for this project
Expand Down
8 changes: 2 additions & 6 deletions api/pom.xml
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>jakarta.enterprise.cdi-api</artifactId>
Expand All @@ -38,7 +38,7 @@

<issueManagement>
<system>Jakarta CDI Issues</system>
<url>https://github.com/eclipse-ee4j/cdi/issues</url>
<url>https://github.com/jakarta/cdi/issues</url>
</issueManagement>

<inceptionYear>2008</inceptionYear>
Expand Down Expand Up @@ -121,10 +121,6 @@


<properties>
<annotation.api.version>3.0.0</annotation.api.version>
<atinject.api.version>2.0.1</atinject.api.version>
<uel.api.version>6.0.0</uel.api.version>
<interceptor.api.version>2.2.0</interceptor.api.version>
<maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format>
</properties>

Expand Down
6 changes: 1 addition & 5 deletions el/pom.xml
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>jakarta.enterprise.cdi-el-api</artifactId>
Expand All @@ -30,10 +30,6 @@
</license>
</licenses>

<properties>
<uel.api.version>6.0.0-M1</uel.api.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion ide-config/pom.xml
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>cdi-ide-config</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion lang-model/pom.xml
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>jakarta.enterprise.lang-model</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Expand Up @@ -19,7 +19,7 @@
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<packaging>pom</packaging>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>

<description>Parent module for CDI Specification</description>

Expand Down Expand Up @@ -117,6 +117,12 @@
</build>

<properties>
<!-- Definitions for the Jakarta EE API dependency versions -->
<annotation.api.version>3.0.0</annotation.api.version>
<atinject.api.version>2.0.1</atinject.api.version>
<uel.api.version>6.0.0</uel.api.version>
<interceptor.api.version>2.2.0</interceptor.api.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<maven.compiler.release>11</maven.compiler.release>
Expand Down
2 changes: 1 addition & 1 deletion spec/pom.xml
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>jakarta.enterprise.cdi-spec-doc</artifactId>
Expand Down

0 comments on commit 118a4d7

Please sign in to comment.