aboutsummaryrefslogtreecommitdiffstats
path: root/version.properties
blob: ddc6dd849689add105410bba6046bf3641df021c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
###########################################################
# Versioning variables
# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... )
# because they are used in Jenkins, whose plug-in doesn't support

major_version=3
minor_version=0
patch_version=0

base_version=${major_version}.${minor_version}.${patch_version}

# Release must be completed with GIT information # in Jenkins
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT
"c"> See the License for the specific language governing permissions and limitations under the License. ============LICENSE_END========================================================= --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> <version>3.2.0</version> </parent> <groupId>org.onap.cps</groupId> <artifactId>cps-aggregator</artifactId> <version>1.1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>cps</name> <description>ONAP Configuration Persistence Service</description> <organization> <name>ONAP - CPS</name> <url>http://www.onap.org/</url> </organization> <properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.install.skip>true</maven.install.skip> </properties> <modules> <module>cps-dependencies</module> <module>cps-bom</module> <module>cps-parent</module> <module>cps-service</module> <module>cps-rest</module> <module>cps-nf-proxy-service</module> <module>cps-nf-proxy-rest</module> <module>cps-ri</module> <module>checkstyle</module> <module>spotbugs</module> <module>cps-application</module> </modules> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.8.1</version> <configuration> <processAllModules>true</processAllModules> </configuration> </plugin> </plugins> </build> </project>