blob: 3dd03550da688ff4fbba5f57b383eaaba1fba9d2 (
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
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
|
<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.so</groupId>
<artifactId>so</artifactId>
<version>1.8.0-SNAPSHOT</version>
</parent>
<groupId>org.onap.so.adapters.so-oof-adapter</groupId>
<artifactId>so-oof-adapter</artifactId>
<version>1.8.0-SNAPSHOT</version>
<name>SO OOF Adapter</name>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8</version>
<configuration>
<skip />
</configuration>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>2.9.0</version>
<executions>
<execution>
<id>format-java</id>
<goals>
<goal>format</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<skip>true</skip>
</configuration>
</execution>
<execution>
<id>format-xml</id>
<goals>
<goal>format</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<skip>true</skip>
<includes>
<include>pom.xml</include>
</includes>
</configuration>
</execution>
<execution>
<id>validate-java</id>
<goals>
<goal>validate</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
<execution>
<id>validate-poms</id>
<goals>
<goal>validate</goal>
</goals>
<configuration>
<skip>true</skip>
<includes>
<include>pom.xml</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>so-oof-adapter-application</module>
<module>packages</module>
</modules>
</project>
|