You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by dy...@apache.org on 2022/02/01 13:07:55 UTC

[incubator-datalab] branch develop updated: add modules for sonar scanning

This is an automated email from the ASF dual-hosted git repository.

dyankiv pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git


The following commit(s) were added to refs/heads/develop by this push:
     new d92a274  add modules for sonar scanning
     new c881204  Merge pull request #1402 from denysyankiv/DATALAB-2673
d92a274 is described below

commit d92a274740b3169d2f8e1bcd1463892599a5fb5c
Author: Denys Yankiv <de...@gmail.com>
AuthorDate: Tue Feb 1 14:52:21 2022 +0200

    add modules for sonar scanning
---
 infrastructure-provisioning/pom.xml                | 39 ++++++++++++++++++++++
 pom.xml                                            |  2 ++
 .../self-service/src/main/resources/webapp/pom.xml | 39 ++++++++++++++++++++++
 3 files changed, 80 insertions(+)

diff --git a/infrastructure-provisioning/pom.xml b/infrastructure-provisioning/pom.xml
new file mode 100644
index 0000000..66608bc
--- /dev/null
+++ b/infrastructure-provisioning/pom.xml
@@ -0,0 +1,39 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, 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.
+  -->
+
+<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/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>com.epam.datalab</groupId>
+        <artifactId>datalab</artifactId>
+        <version>1.0</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>devops</artifactId>
+    <name>DevOps Module</name>
+
+    <properties>
+        <sonar.language>py</sonar.language>
+    </properties>
+
+    <build>
+        <sourceDirectory>.</sourceDirectory>
+    </build>
+</project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 2224ef8..0178495 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,6 +105,8 @@
         <module>services/billing-azure</module>
         <module>services/billing-gcp</module>
         <module>services/billing-aws</module>
+        <module>services/self-service/src/main/resources/webapp</module>
+        <module>infrastructure-provisioning</module>
     </modules>
 
     <properties>
diff --git a/services/self-service/src/main/resources/webapp/pom.xml b/services/self-service/src/main/resources/webapp/pom.xml
new file mode 100644
index 0000000..019fc53
--- /dev/null
+++ b/services/self-service/src/main/resources/webapp/pom.xml
@@ -0,0 +1,39 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, 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.
+  -->
+
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>com.epam.datalab</groupId>
+    <artifactId>datalab</artifactId>
+    <version>1.0</version>
+    <relativePath>/../../../../../../pom.xml</relativePath>
+  </parent>
+  <artifactId>webapp</artifactId>
+  <name>Front End Module</name>
+
+  <properties>
+    <sonar.language>js</sonar.language>
+  </properties>
+
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+  </build>
+</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org