Skip to content

Commit

Permalink
Updated versions in README for SNAPSHOT and fixed build config
Browse files Browse the repository at this point in the history
  • Loading branch information
egoettelmann committed Jul 15, 2023
1 parent 230d571 commit 3213516
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
OLD_PROJECT_VERSION=$(mvn help:evaluate -N -Dexpression=project.version|grep -v '\[')
mvn versions:set -DnextSnapshot=true -DgenerateBackupPoms=false
PROJECT_VERSION=$(mvn help:evaluate -N -Dexpression=project.version|grep -v '\[')
sed -i "s,<version>$OLD_PROJECT_VERSION</version>,<version>$PROJECT_VERSION</version>,g" README.md
find ./ -iname "*README.md" -exec sed -i "s,<version>$OLD_PROJECT_VERSION</version>,<version>$PROJECT_VERSION</version>,g" "{}" ";"
mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
git config user.name "<< pipeline.parameters.git-user >>"
git config user.email "<< pipeline.parameters.git-email >>"
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 @@ -44,7 +44,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.3</version>
<version>0.1.4-SNAPSHOT</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -139,7 +139,7 @@ Simple aggregation, with following additional options:
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.3</version>
<version>0.1.4-SNAPSHOT</version>
<configuration>
<!-- Ignores errors -->
<failOnError>false</failOnError>
Expand Down Expand Up @@ -174,7 +174,7 @@ Simple aggregation, by only including properties from:
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.3</version>
<version>0.1.4-SNAPSHOT</version>
<configuration>
<includeDependencies>
<!-- Includes only metadata defined in dependencies with same 'groupId' as current project -->
Expand All @@ -201,7 +201,7 @@ Aggregation and reporting of all configuration properties.
<plugin>
<groupId>com.github.egoettelmann</groupId>
<artifactId>spring-configuration-aggregator-maven-plugin</artifactId>
<version>0.1.3</version>
<version>0.1.4-SNAPSHOT</version>
<configuration>
<outputReports>
<!-- Generating default JSON report -->
Expand Down Expand Up @@ -240,7 +240,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.3</version>
<version>0.1.4-SNAPSHOT</version>
<configuration>
<!-- Loading default values from custom configuration file -->
<propertiesFiles>
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.3</version>
<version>0.1.4-SNAPSHOT</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.3</version>
<version>0.1.4-SNAPSHOT</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.3</version>
<version>0.1.4-SNAPSHOT</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<compilerArgs>
Expand Down

0 comments on commit 3213516

Please sign in to comment.