Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update maven pom to pass release settings #278

Merged
merged 2 commits into from Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 11 additions & 1 deletion pom.xml
Expand Up @@ -19,6 +19,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.9</version>
</parent>

<artifactId>jakarta.validation-spec</artifactId>
<groupId>jakarta.validation</groupId>
Expand All @@ -36,7 +41,7 @@
<license>license-evaluation</license><!-- value to use for releasing: license-final -->

<base.name>validation-specification</base.name>
<bv.version>3.1.0-M1</bv.version> <!-- e.g. '2.0.0-RC1' -->
<bv.version>${project.version}</bv.version> <!-- e.g. '2.0.0-RC1' -->
<bv.version.spec>3.1</bv.version.spec> <!-- The major.minor of the specification (no service releases) -->
<bv.version.qualifier>Draft</bv.version.qualifier> <!-- e.g. ' (Early Draft 1)' - be careful about the space before the qualifier -->

Expand Down Expand Up @@ -260,6 +265,11 @@
<sourceDocumentName>index.asciidoc</sourceDocumentName>-->
<embedAssets>true</embedAssets>
<attributes>
<bv-revdate>${bv.revdate}</bv-revdate>
<bv-version-spec>${bv.version.spec}</bv-version-spec>
<bv-version-qualifier>${bv.version.qualifier}</bv-version-qualifier>
<license>${license}</license>

<source-highlighter>coderay</source-highlighter>
<imagesdir>resources/images</imagesdir>
<tabsize>4</tabsize>
Expand Down