chore: add Maven Central metadata and release profile to runtime pom.xml

Add required metadata for Maven Central publishing:
- Project URL, Apache-2.0 license, developer info, SCM URLs
- Release profile (-Prelease) with source, javadoc, and GPG signing plugins
- Plugins only activate during release builds, no impact on normal development

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mohamed Ashraf 2026-03-05 23:20:44 +00:00
parent 5763f1924b
commit 12477efdf2

View file

@ -12,6 +12,29 @@
<name>CodeFlash Java Runtime</name>
<description>Runtime library for CodeFlash Java instrumentation and comparison</description>
<url>https://github.com/codeflash-ai/codeflash</url>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Codeflash AI</name>
<organization>Codeflash AI</organization>
<organizationUrl>https://codeflash.ai</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/codeflash-ai/codeflash.git</connection>
<developerConnection>scm:git:ssh://github.com:codeflash-ai/codeflash.git</developerConnection>
<url>https://github.com/codeflash-ai/codeflash</url>
</scm>
<properties>
<maven.compiler.source>11</maven.compiler.source>
@ -150,4 +173,55 @@
</plugin>
</plugins>
</build>
<!-- Maven Central publishing plugins (activated via -Prelease) -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>