forked from SAP/cloud-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
91 lines (91 loc) · 2.74 KB
/
pom.xml
File metadata and controls
91 lines (91 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<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>com.sap.cloud.sdk.datamodel</groupId>
<artifactId>datamodel-parent</artifactId>
<version>0.44.0-SNAPSHOT</version>
</parent>
<artifactId>odata-v4-parent</artifactId>
<packaging>pom</packaging>
<name>Data Model - OData V4 Services - Parent POM</name>
<description>OData V4 Services data model (VDM) - API generator and core classes.</description>
<url>https://sap.github.io/cloud-sdk/docs/java/getting-started</url>
<organization>
<name>SAP SE</name>
<url>https://www.sap.com</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>SAP</name>
<email>cloudsdk@sap.com</email>
<organization>SAP SE</organization>
<organizationUrl>https://www.sap.com</organizationUrl>
</developer>
</developers>
<modules>
<module>odata-v4-core</module>
<module>odata-v4-generator</module>
<module>odata-v4-generator-maven-plugin</module>
</modules>
<scm>
<connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection>
<developerConnection>scm:git:ssh://github.com:SAP/cloud-sdk-java.git</developerConnection>
<url>https://github.com/SAP/cloud-sdk-java/tree/main</url>
</scm>
<properties>
<!-- skip the API compatibility check since this module is still in beta phase -->
<project.rootdir>${project.basedir}/../../../</project.rootdir>
<japicmp.skip>true</japicmp.skip>
</properties>
<profiles>
<profile>
<id>non-release</id>
<activation>
<property>
<name>!release</name>
</property>
</activation>
<modules>
<module>odata-v4-api-sample</module>
</modules>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${project.basedir}/pom.xml</file>
<!-- The parent has no sources -->
<sources>${empty.property}</sources>
<javadoc>${empty.property}</javadoc>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>