Skip to content

Commit

Permalink
[CircleCI] Release version 0.1.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
CircleCI committed Sep 6, 2022
1 parent ac0536c commit 443a236
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-extensions</artifactId>
<packaging>pom</packaging>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<name>Spring Configuration Extensions</name>
<description>Extensions for Spring Configurations management</description>

Expand Down
10 changes: 5 additions & 5 deletions spring-configuration-aggregator-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ You can simply add the project to the build plugin section.
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -137,7 +137,7 @@ Simple aggregation, with following additional options:
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<configuration>
<!-- Ignores errors -->
<failOnError>false</failOnError>
Expand Down Expand Up @@ -172,7 +172,7 @@ Simple aggregation, by only including properties from:
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<configuration>
<includeDependencies>
<!-- Includes only metadata defined in dependencies with same 'groupId' as current project -->
Expand All @@ -199,7 +199,7 @@ Aggregation and reporting of all configuration properties.
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<configuration>
<outputReports>
<!-- Generating default JSON report -->
Expand Down Expand Up @@ -238,7 +238,7 @@ Simple aggregation, that declares custom configuration files to load default val
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<configuration>
<!-- Loading default values from custom configuration file -->
<propertiesFiles>
Expand Down
2 changes: 1 addition & 1 deletion spring-configuration-aggregator-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>spring-configuration-extensions</artifactId>
<groupId>com.github.egoettelmann</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion spring-configuration-extensions-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>spring-configuration-extensions</artifactId>
<groupId>com.github.egoettelmann</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<artifactId>spring-configuration-extensions-samples</artifactId>
<name>Spring Configuration Extensions: Samples</name>
Expand Down
6 changes: 3 additions & 3 deletions spring-value-annotation-processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If using Maven, you can simply add the project as a `provided` dependency.
<dependency>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-value-annotation-processor</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -34,7 +34,7 @@ The plugin's configuration should look to something like the following:
<annotationProcessorPath>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-value-annotation-processor</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
Expand All @@ -61,7 +61,7 @@ Configuration would be as follows:
<annotationProcessorPath>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-value-annotation-processor</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<compilerArgs>
Expand Down
2 changes: 1 addition & 1 deletion spring-value-annotation-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>spring-configuration-extensions</artifactId>
<groupId>com.github.egoettelmann</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>
</parent>
<artifactId>spring-value-annotation-processor</artifactId>
<name>Spring Configuration Extensions: Value Annotation Processor</name>
Expand Down

0 comments on commit 443a236

Please sign in to comment.