Skip to content

Commit

Permalink
Merge pull request #62 from witx98/deployment-config
Browse files Browse the repository at this point in the history
Changed maven deployment configuration and updated module descriptions
  • Loading branch information
marwin1991 authored Nov 30, 2024
2 parents 795c0a9 + 3b36c41 commit 01e1f5f
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 5 deletions.
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>
Expand All @@ -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>
Expand Down
8 changes: 8 additions & 0 deletions hofund-spring-boot-e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
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>
Expand All @@ -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>
Expand Down
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>
Expand All @@ -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>
Expand Down
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -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>

Expand Down

0 comments on commit 01e1f5f

Please sign in to comment.