Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
zambrovski committed Feb 27, 2025
2 parents f529bdc + a1b7a50 commit 5115437
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Please use one of the following templates:

https://github.com/toolisticon/spring-conditions/issues/new/choose
https://github.com/toolisticon/spring-boot-support/issues/new/choose
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ updates:
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
open-pull-requests-limit: 19
labels:
- "Type: dependencies"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@

END OF TERMS AND CONDITIONS

Copyright 2021 Holisticon AG
Copyright 2025 Holisticon AG

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# spring-conditions
# Spring-Boot Support

Provides useful Spring-Boot conditions.
A collection of Spring-Boot supporting tools.

[![incubating](https://img.shields.io/badge/lifecycle-INCUBATING-orange.svg)](https://github.com/holisticon#open-source-lifecycle)
[![Build Status](https://github.com/toolisticon/spring-conditions/workflows/Development%20branches/badge.svg)](https://github.com/toolisticon/spring-conditions/actions)
[![sponsored](https://img.shields.io/badge/sponsoredBy-Holisticon-RED.svg)](https://holisticon.de/)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.spring/spring-conditions/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.spring/spring-conditions)

## Supported conditions
## Spring-Boot Conditions

Provides useful Spring-Boot conditions.

### Supported conditions

- `@ConditionalOnMissingQualifiedBean`

## Usage
### Usage

```xml

Expand Down
24 changes: 24 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<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>
<groupId>io.toolisticon.spring</groupId>
<artifactId>spring-boot-support</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>spring-boot-support-bom</artifactId>
<name>Spring-Boot Support BOM</name>
<description>Bill of material for Spring-Boot Support.</description>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-conditions</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
45 changes: 16 additions & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@
</parent>

<groupId>io.toolisticon.spring</groupId>
<artifactId>spring-conditions</artifactId>
<artifactId>spring-boot-support</artifactId>
<version>1.0.0</version>
<name>${project.artifactId}</name>
<description>spring-conditions</description>
<url>https://github.com/toolisticon/spring-conditions/</url>
<name>Spring-Boot Support Root</name>
<description>Spring-Boot useful support tools and classses.</description>
<url>https://github.com/toolisticon/spring-boot-support/</url>
<packaging>pom</packaging>

<modules>
<module>spring-boot-conditions</module>
<module>bom</module>
</modules>

<dependencyManagement>
<dependencies>
Expand All @@ -29,33 +35,13 @@
</dependencyManagement>

<dependencies>
<!-- SPRING -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- KOTLIN -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>

<!-- TEST -->
<dependency>
<groupId>org.mockito.kotlin</groupId>
<artifactId>mockito-kotlin</artifactId>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand All @@ -73,8 +59,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<groupId>org.mockito.kotlin</groupId>
<artifactId>mockito-kotlin</artifactId>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -110,9 +97,9 @@
</licenses>

<scm>
<connection>scm:git:git@github.com:toolisticon/spring-conditions.git</connection>
<url>scm:git:git@github.com:toolisticon/spring-conditions.git</url>
<developerConnection>scm:git:git@github.com:toolisticon/spring-conditions.git</developerConnection>
<connection>scm:git:git@github.com:toolisticon/spring-boot-support.git</connection>
<url>scm:git:git@github.com:toolisticon/spring-boot-support.git</url>
<developerConnection>scm:git:git@github.com:toolisticon/spring-boot-support.git</developerConnection>
<tag>HEAD</tag>
</scm>

Expand Down
32 changes: 32 additions & 0 deletions spring-boot-conditions/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<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>
<groupId>io.toolisticon.spring</groupId>
<artifactId>spring-boot-support</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>spring-boot-conditions</artifactId>
<name>Spring-Boot Conditions</name>
<description>Set of useful Spring Boot conditions</description>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5115437

Please sign in to comment.