summaryrefslogtreecommitdiffstats
path: root/version.properties
blob: bf303c1bf418cb0fa598c4e19ceee3778b61635e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
###########################################################
# 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


release_name=0
sprint_number=2
feature_revision=0

base_version=${release_name}.${sprint_number}.${feature_revision}

release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT
ASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>odlparent-lite</artifactId> <version>2.1.1</version> <relativePath/> </parent> <groupId>org.onap.ccsdk.oran</groupId> <artifactId>ccsdk-oran</artifactId> <version>1.1.2-SNAPSHOT</version> <packaging>pom</packaging> <modules> <module>a1-adapter</module> <module>a1-policy-management</module> </modules> <properties> <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version> </properties> <build> <plugins> <!-- support sonar in multi-module project --> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar-maven-plugin.version}</version> </plugin> </plugins> </build> </project>