aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-core/pom.xml
blob: 558a58e7bcb8c47577a64afc960f2bcee966c283 (plain)
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
<?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>
  <name>openecomp-sdc-logging-core</name>
  <artifactId>openecomp-sdc-logging-core</artifactId>

  <parent>
    <groupId>org.openecomp.sdc</groupId>
    <artifactId>openecomp-sdc-logging-lib</artifactId>
    <version>1.13.2-SNAPSHOT</version>
  </parent>

  <dependencies>
    <dependency>
      <groupId>org.openecomp.sdc</groupId>
      <artifactId>openecomp-sdc-logging-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>${slf4j-api.version}</version>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>${logback.version}</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

</project>
s="c">================================================================================ --> <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"> <parent> <artifactId>catalog-be-plugins</artifactId> <groupId>org.openecomp.sdc</groupId> <version>1.13.2-SNAPSHOT</version> </parent> <packaging>pom</packaging> <modelVersion>4.0.0</modelVersion> <artifactId>backend-all-plugins</artifactId> <properties> <docker.skip.build>true</docker.skip.build> <docker.skip.push>true</docker.skip.push> <docker.skip.tag>true</docker.skip.tag> <docker.skip>true</docker.skip> </properties> <dependencies> <dependency> <groupId>org.openecomp.sdc</groupId> <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> <type>jar</type> <version>${project.version}</version> </dependency> </dependencies> <profiles> <profile> <id>docker</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <skip.staging.artifacts>true</skip.staging.artifacts> <docker.skip.build>false</docker.skip.build> <docker.skip.tag>false</docker.skip.tag> <docker.skip.push>false</docker.skip.push> <docker.skip>false</docker.skip> </properties> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> <verbose>${verbose}</verbose> <apiVersion>${docker.api.version}</apiVersion> <registry>${docker.registry}</registry> <verbose>${verbose}</verbose> <authConfig> <pull> <username>${docker.username}</username> <password>${docker.password}</password> </pull> </authConfig> <images> <!-- Build backend image --> <image> <name>${docker.namespace}/sdc-backend-all-plugins</name> <alias>sdc-backend-all-plugins</alias> <build> <cleanup>try</cleanup> <dockerFile>backend-all-plugins/Dockerfile</dockerFile> <tags> <tag>latest</tag> <tag> ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest </tag> <tag> ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp} </tag> </tags> <assembly> <descriptor> backend-all-plugins/backend-all-plugins-files.xml </descriptor> <name>onap-sdc-backend-all-plugins</name> </assembly> </build> </image> </images> </configuration> <executions> <execution> <id>clean-images</id> <phase>pre-clean</phase> <goals> <goal>remove</goal> </goals> </execution> <execution> <id>generate-images</id> <phase>install</phase> <goals> <goal>build</goal> </goals> </execution> <execution> <id>push-images</id> <phase>deploy</phase> <goals> <goal>push</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>