Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Sep 29, 2022
2 parents 4a3b81d + a92117c commit 7188d83
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://wcm.io/images/[email protected]"/> CONGA - CONfiguration GenerAtor
======
[![Build](https://github.com/wcm-io-devops/conga/workflows/Build/badge.svg?branch=develop)](https://github.com/wcm-io-devops/conga/actions?query=workflow%3ABuild+branch%3Adevelop)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/conga-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/conga-maven-plugin)
[![Maven Central](https://img.shields.io/maven-central/v/io.wcm.devops.conga/conga-maven-plugin)](https://repo1.maven.org/maven2/io/wcm/devops/conga/conga-maven-plugin)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=wcm-io-devops_conga&metric=coverage)](https://sonarcloud.io/summary/new_code?id=wcm-io-devops_conga)

wcm.io DevOps CONGA Configuration Generator.
Expand Down
6 changes: 6 additions & 0 deletions changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
<body>

<release version="1.14.12" date="2022-09-29">
<action type="update" dev="sseifert">
Update dependencies.
</action>
</release>

<release version="1.14.10" date="2022-06-16">
<action type="fix" dev="sseifert">
Conversion of strings to values (default values, maven properties): Keep values which look like decimals but are actually version numbers as string (e.g. "1.20).
Expand Down
4 changes: 2 additions & 2 deletions generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand All @@ -44,7 +44,7 @@
<dependency>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.model</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<scope>compile</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.resource</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
</dependency>

<dependency>
Expand Down
8 changes: 4 additions & 4 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<packaging>pom</packaging>

<name>CONGA</name>
Expand All @@ -52,7 +52,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.30</version>
<version>1.33</version>
</dependency>

<dependency>
Expand All @@ -64,7 +64,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.9</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.0</version>
<version>2.9.1</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>parent/pom.xml</relativePath>
</parent>

<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.root</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<packaging>pom</packaging>

<name>CONGA</name>
Expand Down
2 changes: 1 addition & 1 deletion resource/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Configuration generator for DevOps Teams.

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/conga-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/conga-maven-plugin)
[![Maven Central](https://img.shields.io/maven-central/v/io.wcm.devops.conga/conga-maven-plugin)](https://repo1.maven.org/maven2/io/wcm/devops/conga/conga-maven-plugin)


### Documentation
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ You find the generated files at `target/configuration`, they are packed as well
It is possible to use CONGA outside Maven from the command line using this prepackaged JAR with all dependencies:

|---|---|---|
| [CONGA Command Line Interface](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/io.wcm.devops.conga.tooling.cli) | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/io.wcm.devops.conga.tooling.cli/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.conga/io.wcm.devops.conga.tooling.cli) |
| [CONGA Command Line Interface](https://repo1.maven.org/maven2/io/wcm/devops/conga/io.wcm.devops.conga.tooling.cli) | [![Maven Central](https://img.shields.io/maven-central/v/io.wcm.devops.conga/io.wcm.devops.conga.tooling.cli)](https://repo1.maven.org/maven2/io/wcm/devops/conga/io.wcm.devops.conga.tooling.cli) |

This mode lacks some features like building definition artifacts, versioning etc. So it is recommended to use the Maven plugin whenever possible.
4 changes: 2 additions & 2 deletions tooling/conga-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>

Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.generator</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<scope>compile</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions tooling/conga-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.parent</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>io.wcm.devops.conga</groupId>
<artifactId>io.wcm.devops.conga.generator</artifactId>
<version>1.14.10</version>
<version>1.14.12</version>
<scope>compile</scope>
</dependency>

Expand Down

0 comments on commit 7188d83

Please sign in to comment.