Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bouncy-castle/bc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>bouncy-castle-parent</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions bouncy-castle/bcfips-include-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
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.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>bouncy-castle-parent</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions bouncy-castle/bcfips/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>bouncy-castle-parent</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions bouncy-castle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>pulsar</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
82 changes: 80 additions & 2 deletions buildtools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<relativePath></relativePath>
</parent>

<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>buildtools</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Pulsar Build Tools</name>

Expand Down Expand Up @@ -277,5 +277,83 @@
</test.additional.args>
</properties>
</profile>
<profile>
<id>ascentstream-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</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.5.0</version>
<configuration>
<doclint>none</doclint>
<failOnError>false</failOnError>
</configuration>
<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>
<plugin>
<groupId>io.github.nodece</groupId>
<artifactId>sonatype-central-publish-maven-plugin</artifactId>
<version>0.0.7</version>
<extensions>true</extensions>
<configuration>
<skip>false</skip>
<serverId>central</serverId>
<publishingType>AUTOMATIC</publishingType>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>ascentstream-github</id>
<distributionManagement>
<repository>
<id>apache.releases.https</id>
<name>${distMgmtReleasesName}</name>
<url>${distMgmtReleasesUrl}</url>
</repository>
<snapshotRepository>
<id>apache.snapshots.https</id>
<name>${distMgmtSnapshotsName}</name>
<url>${distMgmtSnapshotsUrl}</url>
</snapshotRepository>
</distributionManagement>
</profile>

</profiles>
</project>
20 changes: 18 additions & 2 deletions distribution/io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>distribution</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down Expand Up @@ -69,6 +69,22 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
20 changes: 18 additions & 2 deletions distribution/offloaders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>distribution</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down Expand Up @@ -90,6 +90,22 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 18 additions & 2 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>pulsar</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down Expand Up @@ -64,6 +64,22 @@
<skip>${skipBuildDistribution}</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 18 additions & 2 deletions distribution/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>distribution</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down Expand Up @@ -335,6 +335,22 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions distribution/server/src/assemble/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@
<outputFileNameMapping>${artifact.groupId}-${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>

<excludes>
<exclude>org.apache.pulsar:pulsar-functions-runtime-all</exclude>
<exclude>com.ascentstream.pulsar:pulsar-functions-runtime-all</exclude>

<exclude>org.projectlombok:lombok</exclude>

<!-- prevent adding pulsar-functions-api-examples in lib -->
<exclude>org.apache.pulsar:pulsar-functions-api-examples</exclude>
<exclude>com.ascentstream.pulsar:pulsar-functions-api-examples</exclude>
<!-- prevent adding any distribution .tar.gz files in lib -->
<exclude>*:tar.gz</exclude>
</excludes>
Expand Down
20 changes: 18 additions & 2 deletions docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>pulsar</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
</parent>
<artifactId>docker-images</artifactId>
<name>Apache Pulsar :: Docker Images</name>
Expand All @@ -39,6 +39,22 @@
<skip>${skipBuildDistribution}</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
Expand Down
20 changes: 18 additions & 2 deletions docker/pulsar-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<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">
<parent>
<groupId>org.apache.pulsar</groupId>
<groupId>com.ascentstream.pulsar</groupId>
<artifactId>docker-images</artifactId>
<version>2.10.7-SNAPSHOT</version>
<version>2.10.7.17-8ab33f8-20260304182403-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pulsar-all-docker-image</artifactId>
Expand Down Expand Up @@ -174,6 +174,22 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
Loading
Loading