Restored -SNAPSHOT before release

feature/26671
Luca Frosini 2 years ago
parent c945b7b476
commit 98a433a2b6

@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Accounting Aggregator Smart Executor Plugin
## [v2.0.0]
## [v2.0.0-SNAPSHOT]
- Switched JSON management to gcube-jackson [#19115]
- Switched smart-executor JSON management to gcube-jackson [#19647]

@ -9,7 +9,7 @@
<groupId>org.gcube.accounting</groupId>
<artifactId>accounting-aggregator-se-plugin</artifactId>
<version>2.0.0</version>
<version>2.0.0-SNAPSHOT</version>
<name>Accounting Aggregator Smart Executor Plugin</name>
<description>
Accounting Aggregator Smart Executor Plugin provides lossless
@ -87,6 +87,29 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>compile</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${basedir}${file.separator}target${file.separator}libs</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<excludeTypes>war</excludeTypes>
<stripVersion>false</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>

Loading…
Cancel
Save