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

Changed maven deployment configuration and updated module descriptions #62

Merged
merged 4 commits into from
Nov 30, 2024
Merged
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
10 changes: 10 additions & 0 deletions changelog/unreleased/000061-maven-deployment-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
title: Changed maven deployment configuration to prevent publishing of hofund-spring-boot-e2e and root module. Updated modules descriptions.
authors:
- name: Mateusz Witkowski
nick: witx98
url: https://github.com/witx98
type: changed #[added/changed/deprecated/removed/fixed/security/other]
issues:
- 61
merge_requests:
- 62
6 changes: 4 additions & 2 deletions hofund-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>
@@ -12,7 +13,8 @@
<packaging>jar</packaging>

<description>
TODO
A module for automatic configuration of Hofund in Spring Boot applications, offering predefined settings and
integration logic to minimize the need for manual configuration.
</description>

<dependencies>
8 changes: 8 additions & 0 deletions hofund-spring-boot-e2e/pom.xml
Original file line number Diff line number Diff line change
@@ -75,6 +75,14 @@
<injectAllReactorProjects>true</injectAllReactorProjects>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

9 changes: 8 additions & 1 deletion hofund-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>
@@ -10,6 +11,12 @@

<artifactId>hofund-spring-boot-starter</artifactId>

<description>
A Spring Boot starter to easily integrate Hofund functionalities into Spring Boot applications. This starter
includes dependencies and configurations for quick setup, while also serving as a toolset to
monitor applications, manage connections, and discover the current state of system components.
</description>

<dependencies>
<dependency>
<groupId>dev.logchange.hofund</groupId>
6 changes: 4 additions & 2 deletions hofund-spring/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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>
@@ -12,7 +13,8 @@
<packaging>jar</packaging>

<description>
TODO
A Spring-based module that provides tools to gather information about datasource and HTTP connections, enabling
better monitoring and management of system components.
</description>

<dependencies>
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -61,6 +61,7 @@

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

<maven-deploy-plugin.version>3.1.3</maven-deploy-plugin.version>
<spring-boot.version>3.3.1</spring-boot.version>
<oshi-core.version>6.6.5</oshi-core.version>

@@ -125,6 +126,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
<inherited>false</inherited>
</plugin>
</plugins>
</build>