Skip to content
Merged
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
18 changes: 18 additions & 0 deletions phoenixd-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,24 @@
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
<snapshotRepository>
<id>reposilite-snapshots</id>
<url>https://maven.398ja.xyz/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
</repositories>
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

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

The distributionManagement and repositories sections are duplicated across all module POMs. Since these modules inherit from the root POM, this configuration should be inherited automatically and doesn't need to be redefined in each module.

Suggested change
</repositories>

Copilot uses AI. Check for mistakes.

<build>
<plugins>
<plugin>
Expand Down
18 changes: 18 additions & 0 deletions phoenixd-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,22 @@
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
<snapshotRepository>
<id>reposilite-snapshots</id>
<url>https://maven.398ja.xyz/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
</repositories>
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

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

The distributionManagement and repositories sections are duplicated across all module POMs. Since these modules inherit from the root POM, this configuration should be inherited automatically and doesn't need to be redefined in each module.

Suggested change
</repositories>

Copilot uses AI. Check for mistakes.

</project>
18 changes: 18 additions & 0 deletions phoenixd-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,22 @@
<scope>test</scope>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
<snapshotRepository>
<id>reposilite-snapshots</id>
<url>https://maven.398ja.xyz/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
</repositories>
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

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

The distributionManagement and repositories sections are duplicated across all module POMs. Since these modules inherit from the root POM, this configuration should be inherited automatically and doesn't need to be redefined in each module.

Suggested change
</repositories>

Copilot uses AI. Check for mistakes.
</project>
18 changes: 18 additions & 0 deletions phoenixd-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,22 @@
<scope>test</scope>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
<snapshotRepository>
<id>reposilite-snapshots</id>
<url>https://maven.398ja.xyz/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
</repositories>
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

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

The distributionManagement and repositories sections are duplicated across all module POMs. Since these modules inherit from the root POM, this configuration should be inherited automatically and doesn't need to be redefined in each module.

Suggested change
</repositories>

Copilot uses AI. Check for mistakes.
</project>
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,24 @@
</dependencies>
</dependencyManagement>

<distributionManagement>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
<snapshotRepository>
<id>reposilite-snapshots</id>
<url>https://maven.398ja.xyz/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>reposilite-releases</id>
<url>https://maven.398ja.xyz/releases</url>
</repository>
</repositories>

<build>
<pluginManagement>
<plugins>
Expand Down
Loading